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

搜索资源列表

  1. joseph

    0下载:
  2. 用链表解决约瑟夫问题。 约瑟夫环是一个数学的应用问题:已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个人又出列;依此规律重复下去,直到圆桌周围的人全部出列。 其中包括一个实验报告,介绍了编程思路和输出结果截图。-List to resolve Joseph. Josephus is the application of a mathematical problem: Given n in
  3. 所属分类:CSharp

    • 发布日期:2017-11-23
    • 文件大小:37578
    • 提供者:huang
  1. Joseph

    0下载:
  2. 经典问题约瑟夫环,c循环解法,简单明了。-The classic problem Josephus, c cycle solution, straightforward
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-12-04
    • 文件大小:1144
    • 提供者:杰克
  1. Joseph

    0下载:
  2. The program utilizes a circular linked list to achieve the solving of the problem of Josephus-Linear Table realization Joseph problems
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:1195819
    • 提供者:zyl
  1. 1

    0下载:
  2. 2、 约瑟夫(Josephus)环问题:编号为1,2,3,…,n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个正整数作为报数的上限值m,从第一个人开始按顺时针方向自1开始顺序报数,报到m时停止。报m的人出列,将他的密码作为新的m值,从他在顺时针方向上的下一人开始重新从1报数,如此下去,直到所有人全部出列为止。 建立n个人的单循环链表存储结构,运行结束后,输出依次出队的人的序号。 -2, Joseph (Josephus) ring problem: Number
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-04
    • 文件大小:685
    • 提供者:陈晓晖
  1. QueueToJosephRing

    0下载:
  2. 用队列解决约瑟夫环的问题,使用两种方式构建队列。(C#构造)-Queue to solve the problem of Josephus, two ways of constructing the queue. (C# constructor)
  3. 所属分类:Data structs

    • 发布日期:2017-12-05
    • 文件大小:28361
    • 提供者:司徒科
  1. Joseph

    0下载:
  2. 用c语言单项循环链表实现了约瑟夫环 约瑟夫问题的一种描述是-Single circular linked list using c language to achieve Josephus Josephus is a descr iption of the problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:827
    • 提供者:李炳良
  1. yue

    0下载:
  2. 约瑟夫环解决一个历史上的问题,主要是一群人围成一个环,解决最后谁活下来的问题-Josephus solve a history of problems, mainly a group of people surrounded by a ring, to solve the last problem of who survived
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:595
    • 提供者:liubin
  1. 1_Josephus

    0下载:
  2. Josephus环问题:n个人围成一圈,编号从1到n,报数1,2,3,从编号为1的人开始报数,报到3的离开,下面的人接着从1开始报数,依次下去,写程序求最后剩下来的一个人编号是几。-Josephus ring problem: n personal circle, numbered from 1 to n, the number of reported 1,2,3, from the number 1 people began to count off, report three to leav
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:2321
    • 提供者:姚大波
  1. Joseph_Circle

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

    • 发布日期:2017-05-07
    • 文件大小:1481167
    • 提供者:逍遥
  1. v

    0下载:
  2. 用C语言解决约瑟夫斯环问题,利用循环语句,且注意不是从第一个人报起。-Josephus ring with C language to solve the problem, the use of loop, and attention is not reported to play the first person.
  3. 所属分类:File Formats

    • 发布日期:2017-04-15
    • 文件大小:6728
    • 提供者:林翠榕
  1. yuesefuhuan

    0下载:
  2. 解决有关约瑟夫环的数学计算问题,约瑟夫环的相关定义可上网查询-solve the problem about Josephus by airthmetic
  3. 所属分类:Algorithm

    • 发布日期:2017-04-11
    • 文件大小:548
    • 提供者:fengpan
  1. xianxingbiao

    0下载:
  2. 数据结构中线性表的c++实现,包括经典问题约瑟夫环。-Linear table data structures c++ implementation, including the classic problem Josephus.
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:882337
    • 提供者:卢晶晶
  1. Josph

    0下载:
  2. 用链表解决的约瑟夫问题。约瑟夫环是一个数学的应用问题:已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个人又出列;依此规律重复下去,直到圆桌周围的人全部出列。-Joseph with a list of problems to solve. Josephus is the application of a mathematical problem: Known n individuals (in
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:164018
    • 提供者:wenkui
  1. jophous

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

    • 发布日期:2017-04-12
    • 文件大小:1113
    • 提供者:谢双春
  1. yuesefusi

    0下载:
  2. 约瑟夫斯(Josephus)问题的一种描述是:编号为1,2,…,n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个正整数作为报数上限值m,从第一个人开始按顺时针方向自1开始报数,报到m时停止报数。报m的人出列,将他的密码作为新的m值,从他在顺时针方向下一个人开始重新从1报数,如此下去,直至所有的人全部出列为止。试设计一个程序,按出列顺序印出各人编号。 利用单向循环链表存储结构模拟此过程,按照出列的顺序印出各人的编号。 -Josephus (Josephus) a
  3. 所属分类:CSharp

    • 发布日期:2017-04-12
    • 文件大小:1054
    • 提供者:谢双春
« 1 2 ... 5 6 7 8 9 10»
搜珍网 www.dssz.com