搜索资源列表
Joseph
- 双向约瑟夫问题,利用双向链表实现双向进行的约瑟夫问题-Two-way Joseph problems, using two-way two-way linked to the issue of Joseph
1
- 双向循环链表解决约瑟夫环问题 -Two-way linked list to solve the problem, Joseph Wan, Central, two-way linked list to solve the problem, Joseph
DoubleLinkSoveJoseph
- 双向循环链表解决约瑟夫问题,并有教程 密码可以为正数(顺时针转),密码也可以为负数(逆时针转)。-Joseph-way circular linked list to solve the problem, and tutorials password can be positive (clockwise), the password can also be negative (CCW).
shengsiyouxi
- 约瑟夫双向生死游戏是在约瑟夫生者死者游戏的基础上,正向计数后反向计数,然后再正向计数。具体描述如下:30个旅客同乘一条船,因为严重超载,加上风高浪大,危险万分;因此船长告诉乘客,只有将全船一半的旅客投入海中,其余人才能幸免遇难。无奈,大家只得同意这种办法,并议定30个人围成一圈,由第一个人开始,顺时针依次报数,数到第9人,便把他投入大海中,然后从他的下一个人数起,逆时针数到第5人,将他投入大海,然后从他逆时针的下一个人数起,顺时针数到第
1
- 用双向链表实现约瑟夫问题,c++开发实现,数据结构 小孩个数可变;数数间隔可变;起始位置可变;数数方向可变-Joseph with a doubly linked list implementation issues, c++ development to achieve, the number of children variable data structure count interval variable starting
Joseph
- 约瑟夫环 双向循环链表 建议功能实现。可作参考。或许有错-Stack in order to achieve Tower of Hanoi suggestion feature. For reference
Joseph
- 约瑟夫双向生死问题,简单的控台程序,用C++数据结构实现-Joseph problem
Joseph_ring20120813
- 约瑟夫环问题的c++解决方法,包括双向链表和单向链表两种解决方法。-Josephus problem c++ solutions, including the doubly linked list, singly linked list are two workarounds.
the-Josephus-problem
- 利用建立双向循环链表来解决约瑟夫环的问题-Doubly linked list to solve the Josephus problem
josefsuanfa
- 一个利用结构体双向循环链表实现的算法,从41个人中杀去39人 剩最后2人 著名的约瑟夫算法-A way circular list structure algorithms implemented to kill 39 people, 41 people left the last 2 Joseph algorithms
Two-way-Joseph-problems
- 经典算法问题-双向约瑟夫问题,c语言版,代码详细,可运行-Classic algorithmic problems- bidirectional Joseph, c language version of the code in detail, you can run
circular-linked-list-Josephus
- 约瑟夫环问题 【问题描述】 Josephus排列问题定义如下:假设n个竞赛者排成一个环形。给定一个正整数m≤n,从第1人开始,沿环计数,第m人出列。这个过程一直进行到所有人都出列为止。最后出列者为优胜者。全部出列次序定义了1,2,…n的一个排列。称为(n,m)Josephus排列。例如,(7,3)Josephus排列为3,6,2,7,5,1,4。 【实验要求】 设计求解Josephus排列问题程序。 (1)采用顺序
ConsoleApplication1
- 约瑟夫环问题,c#环境开发,使用循环线性双向链表,欢迎大家下载评测。-Jesoph qustion,which was developed by c#.
Josephus
- 数据结构与算法分析:约瑟夫环(双向链表)-Algorithm Analysis: Josephus (doubly linked list)
Circulink
- C#利用循环双向链表解决约瑟夫环问题,算法简明可读性强,是学习数据结构的优秀材料。-Using C# to solve the problem of Joseph ring cycle of two-way linked list algorithm is concise, readable, is excellent learning materials data structure.
yuesefu
- 双向约瑟夫问题(顺时针再逆时针) n个人排成一个圆圈,从第一个人开始,先按顺时针方向,数m,数到m的人退出圆圈,然后从原有方向的下一个人开始,按原来顺序的反方向继续数m,依次数数,直到只剩最后一个人为止。比如有5个人,数3,则依次出去的人为3,1,4,5,2,最后的人是2号。现已知n和m,请问最后一个人的编号是多少?-Joseph problems bidirectional (clockwise then countercloc
yuesefu
- 自己用c写的一段代码,详细解释了双向约瑟夫的信息。-Own use c to write a piece of code, a detailed explanation of the two-way Joseph information.
双向约瑟夫
- 约瑟夫问题是一个经典的问题,我们不妨将这个经典问题进行扩展,变成一个双向的约瑟夫问题。 已知 n 个人(不妨分别以编号 1,2,3,...,n 代表 )围坐在一张圆桌周围,首先从编号为 k 的人从 1 开始顺时针报数,1, 2, 3, ...,记下顺时针数到 m 的那个人,同时从编号为 k 的人开始逆时针报数,1, 2, 3, ...,数到 m 后,两个人同时出列。然后从出列的下一个人又从 1 开始继续进行双向报数,数到 m