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

搜索资源列表

  1. Joseph

    0下载:
  2. 约瑟夫环问题,简明算法.注释部分可单独构成助于理解的文档.-Josephus, concise algorithm. Comment section can be used alone constitute a help to understand the document.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1298
    • 提供者:周独战
  1. Josephus

    0下载:
  2. VC++6.0下的约瑟夫环问题实现,可以输入人数和要数的数字,并将出队的次序依次输出-Josephus Circle with VC++6.0.You can input number of people and the number to be counted.Then sequence can be printed on the screen.
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1146472
    • 提供者:琨琨
  1. joseph

    0下载:
  2. 模拟约瑟夫环(josephus)问题: n个人(编号为1,2,3,……,n (n>0) )按顺时针方向围坐一圈,每人持有一个正整数密码。开始时任意给出两个值:一个为首先报数的人的编号i (0<i<=n),另一个为起始报数上限值m。接着从编号为i的人开始按顺时针方向自1起顺序报数,报到m时停止报数,且报到m的人出列,并将他的密码作为新的m值,从他在顺时针方向上的下一个人起重新自1报数,……,如此下去,直到所有人全部出列为止。设计一个程序模拟此过程,给出出列人的编号序列。 基本
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:312243
    • 提供者:陈若耿
  1. Josephus

    0下载:
  2. 约瑟夫(Josephus)环问题 设n个人围坐在一个圆桌周围,现在从第s个人开始报数,数到第m个人,让他出局;然后从出局的下一个人重新开始报数,数到第m个人,再让他出局,如此反复直到所有的人全部出局为止。 下面要解决的约瑟夫(Josephus)环问题是:对于任意给定的n,s和m,求出这n个人的出局序列。要求以单循环链表作为存储结构,实现约瑟夫环问题。然后使用n=9,s=1,m=5,以及n=9,s=1,m=10作为输入数据,检查你的程序的正确性和健壮性。 -Joseph (Josep
  3. 所属分类:Data structs

    • 发布日期:2016-01-25
    • 文件大小:44032
    • 提供者:winner
  1. JosephSTL

    0下载:
  2. [转发]约瑟夫环问题的一种C语言的算法,STL链表解法。-[Forwarded] Josephus a C language algorithms, STL linked list solution.
  3. 所属分类:STL

    • 发布日期:2017-04-05
    • 文件大小:2296
    • 提供者:贾世灵
  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. [转发]约瑟夫环问题的数组解法,很简单的一个算法。-[Forwarding] the Josephus array solution, a very simple algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2174
    • 提供者:贾世灵
  1. Josephus

    0下载:
  2. 约瑟夫环问题 数据结构经典算法 链表实现-Josephus problem
  3. 所属分类:source in ebook

    • 发布日期:2017-04-25
    • 文件大小:174699
    • 提供者:万先生
  1. huan

    0下载:
  2. 约瑟夫环问题的代码。设有N个人围坐一圈,从某个人开始报数,数到M的人出列,接着从出列的下一个人开始重新报数,数到M的人又出列,如此下去,直到所有人都出列为止.试设计确定他们的出列次序序列的程序。-Joseph cycle problem code. With N individuals sitting around a circle, starting from the one person reported the number of people who count the column M
  3. 所属分类:Data structs

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

    0下载:
  2. 简单的约瑟夫环和复杂的约瑟夫环问题的代码。-Simple Joseph ring and complex Joseph ring problem code
  3. 所属分类:Console

    • 发布日期:2017-11-26
    • 文件大小:174727
    • 提供者:zhangyi
  1. Josephus

    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 n (n> 0) i
  3. 所属分类:Data structs

    • 发布日期:2017-11-13
    • 文件大小:6549
    • 提供者:梁颖
  1. JOSEPHUS

    0下载:
  2. 约瑟夫环问题的实际场景。已知n个人围坐在圆桌周围,从编号k的人开始报数,数到m的那个人出列,依次下去,直至全部出列。采用的解决方法是典型的循环链表的数据结构。-Josephus actual scene. Given n people sitting around the round table, starting from the number k reported number, the number to m the man out of the line, and go on, unti
  3. 所属分类:Data structs

    • 发布日期:2017-11-27
    • 文件大小:868119
    • 提供者:mileycyrus
  1. Huffman

    0下载:
  2. 哈夫曼树,用哈夫曼树解决约瑟夫环问题 代码具有良好封装性-Huffman tree Huffman tree the Josephus problem code with good package
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-11-25
    • 文件大小:2070
    • 提供者:朱春明
  1. hw1-joseph

    0下载:
  2. c++数据结构中处理约瑟夫环问题源码,使用模版编写链表。配套清华版数据结构图书。-c++ data structure in processing Josephus source, use the template to write a linked list. Supporting Tsinghua version data structure books.
  3. 所属分类:Data structs

    • 发布日期:2017-11-28
    • 文件大小:173830
    • 提供者:秦泽宇
  1. JoseQuestion

    0下载:
  2. 约瑟夫环问题求解    约瑟夫环问题的具体描述是:设有编号为1,2,……,n的n(n>0)个人围成一个圈,从第1个人开始报数,报到m时停止报数,报m的人出圈,再从他的下一个人起重新报数,报到m时停止报数,报m的出圈,……,如此下去,直到所有人全部出圈为止。当任意给定n和m后,设计算法求n个人出圈的次序。-Josephus Josephus problem solving specific descr iption is: has numbered 1, 2, ...... n n (n
  3. 所属分类:Console

    • 发布日期:2017-11-27
    • 文件大小:1020
    • 提供者:冯读庆
  1. sd2

    0下载:
  2. 约瑟夫环问题的程序清单-Josephus list of procedures-Josephus problem program list-Josephus list of procedures
  3. 所属分类:Algorithm

    • 发布日期:2017-11-23
    • 文件大小:1258
    • 提供者:fghfghrtr
  1. yueshefu

    0下载:
  2. 一个介绍 约瑟夫环 问题的 一个算法。采用了 链表结构-An introduction Josephus an algorithm. Using a linked list structure
  3. 所属分类:Other systems

    • 发布日期:2017-11-20
    • 文件大小:881350
    • 提供者:黄建
  1. Josephus

    0下载:
  2. 约瑟夫环问题,用户输入M,N值,从1至N开始顺序循环数数,每数到M输出该数值,直至全部输出。-Josephus, the user input M, N values, each number to the start sequence and cycle count from 1 to N, M output the values, until all the output.
  3. 所属分类:CSharp

    • 发布日期:2017-12-07
    • 文件大小:52787
    • 提供者:叶知秋
  1. Homework1_2

    0下载:
  2. 约瑟夫环问题原代码,亲自检验能运行成功,没有错误-Josephus original code, personally test can be run successfully, the error
  3. 所属分类:Data structs

    • 发布日期:2017-12-05
    • 文件大小:274435
    • 提供者:Hita
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 17 »
搜珍网 www.dssz.com