CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - Josephus problem

搜索资源列表

  1. 经典约瑟夫环问题c语言版

    0下载:
  2. 数据结构中解决约瑟夫环问题的代码,里面只有源代码,大家用TC2编译一下就可以用了:)。-data structure to solve the problem of Josephus code, only the source code, we use TC2 compiler can use it with a :).
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:954
    • 提供者:苏辉
  1. 456456413786

    0下载:
  2. 数据结构课程设计打包下载,包括两个1.约瑟夫环 2.最小生成树问题!!!我已经交给老师,发给大家参考一下-data structure course design package download, including two one. Josephus 2. The minimum spanning tree problem! ! ! I was handed over to the teachers, to your reference! !
  3. 所属分类:数据库编程

    • 发布日期:2008-10-13
    • 文件大小:8671
    • 提供者:xing
  1. Link_List

    0下载:
  2. using C++ Language to accomplish a link-list to solve the problem of Josephus.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:305601
    • 提供者:pig
  1. dangdang 约瑟夫环是一个数学的应用问题

    0下载:
  2. 约瑟夫环是一个数学的应用问题:已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的 那个人出列 他的下一个人又从1开始报数,数到m的那个人又出列 依此规律重复下去,直到圆桌周围的人全部出列。-Josephus is the application of a mathematical problem: Given n individuals (in numbers 1,2,3 ... n, respectively) sitting around
  3. 所属分类:电子政务应用

    • 发布日期:2017-05-25
    • 文件大小:8277995
    • 提供者:Margaret
  1. main

    1下载:
  2.   约瑟夫斯(Josephus)问题的一种描述是:编号为1,2,…,n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个正整数作为报数上限值m,从第一个人开始按顺时针方向自1开始报数,报到m时停止报数。报m的人出列,将他的密码作为新的m值,从他在顺时针方向下一个人开始重新从1报数,如此下去,直至所有的人全部出列为止。试设计一个程序,按出列顺序印出各人编号。-Josephus (Josephus) a descr iption of the problem: the numb
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-08
    • 文件大小:716
    • 提供者:
  1. yuesefuhuan

    0下载:
  2. 用循環鏈錶完成數據結構中約瑟夫環的功能,解決了約瑟夫問題-Completion of the circular linked list data structure in Josephus to solve the problem of Joseph
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-16
    • 文件大小:583676
    • 提供者:馮慎
  1. 7

    0下载:
  2. 用循环单链表解决josephus问题的算法-Circular single linked list using an algorithm to solve the problem josephus
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:1050
    • 提供者:hrx
  1. xunhuanlianbiao

    0下载:
  2. 编写一个求解Josephus问题的函数。用整数序列1, 2, 3, ……, n表示顺序围坐在圆桌周围的人。然后使用n = 9, s = 1, m = 5,以及n = 9, s = 1, m = 0,或者n = 9, s = 1, m = 10作为输入数据,检查你的程序的正 确性和健壮性。最后分析所完成算法的时间复杂度。定义JosephusCircle类,其中含完成初始化、报数出圈成 员函数、输出显示等方法。-Josephus write a problem solving function. W
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:592
    • 提供者:王宗亮
  1. jingdiansuanf

    0下载:
  2. 二叉树的递归与非递归遍历(Java描述),高效实现Josephus算法,合并有序链表,基于队列实现的基数排序,栈.回溯.迷宫问题求解。5个算法的源程序。-Recursive and non recursive binary tree traversal (Java descr iption), efficient algorithms to achieve Josephus, merging sorted linked list, queue-based implementation of ra
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-27
    • 文件大小:81493
    • 提供者:liujin
  1. famousalgorithmcollection

    0下载:
  2. <经典算法合集>其中包括: 最小生成树 MD5加密 LZW压缩 josephus 乘法表 积分 枚举 基数转换 矩阵问题举例 求解质数 圆周率的求法 改进的快速排序法 几种插入排序法 水仙花数 迷宫生成器 生命游戏 递归 回溯 贪心 动态规划 排序算法-" Classical algorithm Collection> These include:
  3. 所属分类:Other systems

    • 发布日期:2017-05-16
    • 文件大小:4215794
    • 提供者:我很笨
  1. C

    1下载:
  2. line.c-某软件公司大约有30名员工,每名员工有姓名、工号、职务等属性,每年都有员工离职和入职。 把所有员工按照顺序存储结构建立一个线性表,建立离职和入职函数,当有员工离职或入职时,修改线性表,并且打印最新的员工名单。 Compute.cpp--约瑟夫(Josephus)环问题 8Queens.cpp--8皇后问题 4Colors.cpp--4色问题 4Fib.cpp--f0=f1=f2=0, f3=1,…,fi=fi-1+fi-2+fi-3+fi-4, 利用容量为k
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:3910
    • 提供者:huchenzhi
  1. Joseph-ring-on-vs-2011

    0下载:
  2. C++链表解决约瑟夫环问题,问题描述:假设有N个小孩按照序号1,2,,,N围坐成一圈,从第一个小孩开始报数,每次报到n的人退出,接着从下一个人重新开始从1开始报数,下一次再报到n的人退出, 求最后一个留下第几个人;-C++ linked list to solve the problem Josephus, described the problem: Suppose there are N children according to number 1,2,,, N sitting in a
  3. 所属分类:Data structs

    • 发布日期:2017-05-17
    • 文件大小:5040520
    • 提供者:沈宙
  1. jos

    0下载:
  2. 数据结构作业 约瑟夫(Josephus)环问题:编号为1,2,3,…,n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个正整数作为报数的上限值m,从第一个人开始按顺时针方向自1开始顺序报数,报到m时停止。报m的人出列,将他的密码作为新的m值,从他在顺时针方向上的下一人开始重新从1报数,如此下去,直到所有人全部出列为止。-2, Joseph (Josephus) loop problem: number 1,2,3, ..., n, n individuals sittin
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:7774
    • 提供者:meihan
  1. recycle

    0下载:
  2. 用c语言写的循环链表的约瑟夫环的问题,报数出队的操作-With c language of Josephus circular linked list problem, reported that the number of teams operating
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:861
    • 提供者:urge
  1. yusefusi

    0下载:
  2. 约瑟夫斯(Josephus)问题的一种描述是:编号为1,2,…,n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个 正整数作为报数上限值m,从第一个人开始按顺时针方向自1开始报数,报到m时停止报数。报m的人出列,将他的密码作为新的m值,从他在顺时针方向下一个人 开始重新从1报数,如此下去,直至所有的人全部出列为止。试设计一个程序,按出列顺序印出各人编号。-Josephus (Josephus) a descr iption of the problem is: numbe
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:633
    • 提供者:dlj
  1. dpzsvou

    0下载:
  2. 用数组解JOSEPHUS问题的程序源码,绝对没有错误,很好,不错-With an array of JOSEPHUS problem of program source code, there is absolutely no wrong, is very good, good
  3. 所属分类:Other systems

    • 发布日期:2017-12-20
    • 文件大小:2048
    • 提供者:Eliine
  1. 0445898

    0下载:
  2. 这是一个Josephus问题的C++代码,用双向链表实现,很好-This is a c++ code, Josephus problem with two-way linked list implementation, is very good
  3. 所属分类:Windows Develop

    • 发布日期:2017-12-15
    • 文件大小:2048
    • 提供者:iitm_170078
  1. JOSEPHUS

    0下载:
  2. 约瑟夫环问题源代码 约瑟夫环(约瑟夫问题)是一个数学的应用问题:已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列 他的下一个人又从1开始报数,数到m的那个人又出列 依此规律重复下去,直到圆桌周围的人全部出列。通常解决这类问题时我们把编号从0~n-1,最后结果+1即为原问题的解。-Joseph ring problem source code Joseph s ring (Joseph s problem) is a mathem
  3. 所属分类:Other systems

    • 发布日期:2017-12-13
    • 文件大小:791205
    • 提供者:
  1. wvth-linked-list

    0下载:
  2. 这是一个Josephus问题的C++代码,用双向链表实现,很好(This is a c + + code, Josephus problem with two-way linked list implementation, is very good)
  3. 所属分类:组合框控件

    • 发布日期:2017-12-22
    • 文件大小:1024
    • 提供者:peccmqositiqn
  1. sbsreprogramsource

    0下载:
  2. 用数组解JOSEPHUS问题的程序源码,绝对没有错误,很好,不错(With an array of JOSEPHUS problem of program source code, there is absolutely no wrong, is very good, good)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-23
    • 文件大小:2048
    • 提供者:bquatizn
« 1 2 3 4 5 6 7 89 »
搜珍网 www.dssz.com