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

搜索资源列表

  1. JOSEPHUS

    0下载:
  2. 这是数据结构中的一个问题,用一带头结点的单向链表解决“约瑟夫环”问题。-This is a problem about data structure , using a linked list without the lead node solution " Joseph Ring" problem.
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:637
    • 提供者:ddd
  1. Josephus

    0下载:
  2. 此源代码用于解决Josephus问题的计算,并帮助初学者有效的学习掌握提高C++编程能力-The source code used to solve the problem of computing Josephus, and to help beginners improve effective learning to master programming skills in C++
  3. 所属分类:CSharp

    • 发布日期:2017-04-10
    • 文件大小:945
    • 提供者:logionion
  1. Josephus

    0下载:
  2. 约瑟夫环,设有n个人围坐在一个圆桌周围,现从第s个人开始报数,数到第m的人出列,然后从出列的下一个人重新开始报数,数到第m的人又出列,…,如此反复直到所有的人全部出列为止。以n=8,s=1,m=4为例,若初始的顺序为 n1,n2,n3,n4,n5,n6,n7,n8。则问题的解为n4,n8,n5,n2,n1,n3,n7,n6。-Joseph Wan, with n individuals sitting around a round table, is reported starting from
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:190444
    • 提供者:ll
  1. Joseph

    0下载:
  2. 约瑟夫问题解决好人与坏人问题:有n个人围成一圈,分别报数,报到为m的出列,也就是经典的约瑟夫问题。先要解决这样一个问题。围成一圈的人有k个好人,k个坏人,在进行约瑟夫问题报数时,符合在坏人没有都出列前第一个好人没有出列这样的情况的m的最小值为多少?-Joseph, good and bad problem-solving problem: there are n people form a circle, respectively, reported that the number of reg
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:546312
    • 提供者:dekayzc
  1. shujujiegou

    0下载:
  2. 这里有数据结构课程设计的所有题目,有一些题目的参考实验报告,如停车场问题,八皇后问题,约瑟夫环问题-Here are all the data structures course design topics, some topics of the experiment report, such as parking problems, the eight queens problem, Josephus problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:629595
    • 提供者:li ui lan
  1. jeoph

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

    • 发布日期:2017-04-05
    • 文件大小:91782
    • 提供者:
  1. JOSEPHUS

    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. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1371
    • 提供者:yyy
  1. Josephus

    0下载:
  2. 基础问题,用循环链表实现约瑟夫问题,数据结构作业-Basic problem, the problem with the circular linked list implementation Joseph, the data structure operations
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:705
    • 提供者:王子剑
  1. 0

    0下载:
  2. 约瑟夫环问题,在C语言开发案例中有介绍 个人有相对简便的方法。-Josephus problem, in the C language development are described in individual cases have a relatively easy way.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2373
    • 提供者:占吉翔
  1. yuesefu

    0下载:
  2. 用c语言开发的来实现约瑟夫环问题的求解程序。-C language development to achieve the Josephus problem solver.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:707
    • 提供者:yjt
  1. Josephus

    0下载:
  2. 有n个人围坐在一个圆桌周围,现从第s个人开始报数,数到第m的人出列,然后从出列的下一个人重新开始报数,数到第m的人又出列,…,如此反复直到所有的人全部出列为止.利用Josephus环解决此问题。-There are n personal sitting around a round table all around, from the first s personal beginning now number off, to the number of m row, then stood do
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:169423
    • 提供者:
  1. Josephus

    0下载:
  2. 解决经典问题约瑟夫环的C程序,简单易行,可供C语言和数据结构初学者使用-A C program can be used to Solve the problem of the Joseph ring
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:609
    • 提供者:韦航
  1. Josephus

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

    • 发布日期:2017-04-16
    • 文件大小:14780
    • 提供者:哈达
  1. Josephus

    0下载:
  2. 经典的约瑟夫问题,约瑟夫问题c源码,主要是约瑟夫代码实现。对于c的初学者来说还不错。-The classic problem of Joseph, Joseph problems c source code, source implementation of Joseph. Also good for the beginner of c.
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:615
    • 提供者:祝昊
  1. Joseph-problem

    0下载:
  2. 约瑟夫环队的程序,其中包含四种不同的程序,包括带头结点,不带头结点的队列程序-Josephus team program, which includes four different programs, including to take the lead node does not take the lead in the queue of the node program
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:11453
    • 提供者:周琳
  1. Josehpos

    0下载:
  2. [转发]约瑟夫环问题的不带头结点的循环链表解法,可以成功运行哒~-[Forwarded] Josephus problem does not take the lead in the solution of the circular linked list of nodes, you can successfully run da ~
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:2800
    • 提供者:贾世灵
  1. Josehpos

    0下载:
  2. [转发]约瑟夫环问题的带头节点的循环链表的解法-[Forwarded] the solution of the circular linked list of the leading node of the Josephus problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:2751
    • 提供者:贾世灵
  1. josephus

    0下载:
  2. 分别以数组指针和模拟指针的方法解决约瑟夫问题-Respectively pointer array pointer and simulation methods to solve the problem of Joseph
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:246486
    • 提供者:张超
  1. Josephus

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

    • 发布日期:2017-12-08
    • 文件大小:328283
    • 提供者:张三
  1. Josephus-Problem

    0下载:
  2. 约瑟夫环...一个链表运用的经典案例,自己写的..还算简洁,希望大家给与指导-Joseph ring ... a classic case of linked lists use to write their own .. pretty simple, I hope you give guidance
  3. 所属分类:Other systems

    • 发布日期:2017-11-12
    • 文件大小:578958
    • 提供者:lareina
« 1 2 3 4 56 7 8 9 »
搜珍网 www.dssz.com