CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 约瑟夫环问题

搜索资源列表

  1. 约瑟夫环问题vector

    0下载:
  2. n个人围着桌子坐一圈,从第s个哥们开始报数,报到m的出列,输出出列顺序
  3. 所属分类:系统编程

    • 发布日期:2010-06-12
    • 文件大小:958906
    • 提供者:edisonrush
  1. JosephCentralissues.rar

    0下载:
  2. 约瑟夫环问题,数据结构实验题目实验一 线性表应用,Joseph Central issues
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:576
    • 提供者:哈达
  1. joke

    0下载:
  2. 约瑟夫环问题:设编号为1,2,3,……,n的n(n>0)个人按顺时针方向围坐一圈,每个人持有一个正整数密码。开始时任选一个正整数做为报数上限m,从第一个人开始顺时针方向自1起顺序报数,报到m是停止报数,报m的人出列,将他的密码作为新的m值,从他的下一个人开始重新从1报数。如此下去,直到所有人全部出列为止。令n最大值取30。要求设计一个程序模拟此过程,求出出列编号序列。-Josephus problem: Let numbered 1,2,3, ... ..., n of n (n>
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:2053
    • 提供者:陈玟
  1. josephu

    0下载:
  2. 用顺序表解决josephus(约瑟夫环)问题的算法-The Algorithm using the order form to solve josephus (Josephus)
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:147954
    • 提供者:zhangfei
  1. yuesefu

    0下载:
  2. 约瑟夫环问题:设编号为1,2,3,……,n的n(n>0)个人按顺时针方向围坐一圈,每个人持有一个正整数密码。开始时任选一个正整数做为报数上限m,从第一个人开始顺时针方向自1起顺序报数,报到m是停止报数,报m的人出列,将他的密码作为新的m值,从他的下一个人开始重新从1报数。如此下去,直到所有人全部出列为止。令n最大值取30。要求设计一个程序模拟此过程,求出出列编号序列。-Josephus problem: Let numbered 1,2,3, ... ..., n of the n (n&
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:893132
    • 提供者:金庸
  1. Joseph_ring20120813

    0下载:
  2. 约瑟夫环问题的c++解决方法,包括双向链表和单向链表两种解决方法。-Josephus problem c++ solutions, including the doubly linked list, singly linked list are two workarounds.
  3. 所属分类:Console

    • 发布日期:2017-05-19
    • 文件大小:5258533
    • 提供者:沈宙
  1. Josephus.java

    0下载:
  2. Josephus.java,是java课程的实验2 求解约瑟夫环问题-Josephus.java, is a java course experiment 2 Joseph Cycle Problem Solving
  3. 所属分类:JavaScript

    • 发布日期:2017-04-08
    • 文件大小:2202
    • 提供者:叶毅
  1. yuesefuhuan

    0下载:
  2. 约瑟夫环问题:任给正整数N和K,按下述方法可以得到1,2, …,n的一个置换,将数字1,2,…,n环形排列,按顺时针方向自1开始报数,报到K时输出该位置上的数字,并使其出列。然后从他在顺时针方向的下一个数字继续报数,如此下去,直到所有的数字全部出列为止。例如N=10,K=3,则正确的出列顺序应为3,6,9,2,7,1,8,5,10,4。-Joseph Central questions: any given positive integer N and K, the following met
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:1032
    • 提供者:刘慧
  1. 1

    0下载:
  2. 约瑟夫环算法,可以利用此算法解决栈存储的约瑟夫环问题.-Joseph loop algorithm, can use this algorithm to solve the storage stack Joseph Central problems.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:797
    • 提供者:wxg
  1. yuesefu

    0下载:
  2. 数据结构的课程设计题目以及源代码 约瑟夫环问题 c-Data structure of the curriculum design topics, as well as the question of the source code c Joseph Central
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-06
    • 文件大小:86504
    • 提供者:晴天
  1. 3

    0下载:
  2. 数据结构中最基本的约瑟夫环问题 改程序简单明了 适合初学者使用-Data structure in the most basic question of reform procedures Joseph Central simple to use for beginners
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6439
    • 提供者:pcgg
  1. yueshefuhuanwenti

    0下载:
  2. 设计求解约瑟夫环问题的出列顺序。具体的要求和说明如下: (1)利用单向循环链表存储结构模拟此过程,按照出列的顺序输出个人的编号。 (2)m的初值为20;n=7,7个人的密码依次为:3,1,7,2,4,8,4,首先m的值为6(正确的出列顺序应为:6,1,4,7,2,3,5)。 (3)程序运行后,首先要求用户指定初始报数的上限值,然后读取个人的密码。可设n<=30,此题所用的循环链表中不需要“头结点”,请注意空表和非空表的界限。 (4)将上述功能改为在顺序结构上实现。-
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1740
    • 提供者:chen
  1. yuesefu..doc

    0下载:
  2. 约瑟夫环问题的另外一种解法,这种解法比线性法相对复杂一些-Joseph Central questions of another kind of solution, this solution than the linear method is relatively complex
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:10832
    • 提供者:denglihai
  1. Joseph

    0下载:
  2. 约瑟夫环问题: 设编号为1,2,…,n的人按顺时针方向围坐一圈,每人持有一个正整数密码。开始时任意给出一个报数上限值m,从第一个人开始顺时针方向自1起顺序报数,报道m时停止报数,报m的人出列,将他的密码作为新的m值,从他的顺时针方向上的下一个人起重新自1起顺序报数;如此下去,直到所有人全部出列为止。要求设计一个程序模拟此过程,并给出出列人的编号序列。 -Joseph Central question: Let numbered 1,2, ..., n the person clockw
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:672
    • 提供者:黄咋的
  1. ysf

    0下载:
  2. 这个小程序是用c++实现的约瑟夫环问题,也属于数据结构中的经典算法-This applet is used c++ to achieve the Joseph Central problems in the data structure is a classic algorithm. . .
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:138535
    • 提供者:杨少博
  1. javalab

    0下载:
  2. java实验答案。其中包括:金额的中文大写方式 ,约瑟夫环问题,设计银行账户类及存取款操作方法,字符串练习与面向对象技术,设计学生成绩表,计算器,利用线程比较插入冒泡排序算法的好坏,使用多种方式读取文本文件。以及最后的 java中必懂的内容简介。-java experimental answer. These include: the amount of the way the Chinese capital, Joseph Central issues, the design of bank
  3. 所属分类:Java Develop

    • 发布日期:2017-04-26
    • 文件大小:38616
    • 提供者:tangtang
  1. Joseph_Central_issues

    0下载:
  2. 数据结构——约瑟夫环问题C++源代码和注释 。-Data structure- Joseph Central issues, C++ source code and notes.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1144
    • 提供者:子米
  1. ysfh

    0下载:
  2. 约瑟夫环问题 很标准 输入很合理 数据结构课程设计内容-Joseph Central question is a very reasonable standard input data structure the content of the curriculum design
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:648
    • 提供者:孙女喊叫
  1. yusefuhuan

    0下载:
  2. 解决Josephus(约瑟夫环)问题的pascal代码-Solve the Josephus (Joseph Central) in pascal code
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:539
    • 提供者:changjian
  1. Experiment

    0下载:
  2. 约瑟夫环问题,N个人围成一圈,报数,数到M的人退出。求出出列序号,-joseph
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:564
    • 提供者:chen
« 1 2 3 4 56 7 8 9 10 ... 17 »
搜珍网 www.dssz.com