搜索资源列表
ysfh
- 本演示程序中,人数n应为任意的,首先应输入一个值赋给初始报数上限m,程序应能自动保存出列人的序号和将出列的人所持的密码赋给m,再次作为报数上限,如此循环,直至所有人都出列为止。
ysfh
- 这是数据结构中约瑟夫环问题!-This is the data structure Josephus problem!
ysfh
- 数据结构课程设计,循环单链表实现约瑟夫环问题
ysfh
- 这是数据结构中约瑟夫环问题!-This is the data structure Josephus problem!
ysfh1
- 约瑟夫环 数据结构算法啊 这学期学的 这是我们的上机实验作业 -Josephus algorithm data structure ah this semester of this school is on the experimental aircraft operations huh
ysfh
- 本演示程序中,人数n应为任意的,首先应输入一个值赋给初始报数上限m,程序应能自动保存出列人的序号和将出列的人所持的密码赋给m,再次作为报数上限,如此循环,直至所有人都出列为止。-The demonstration program, the number n should be arbitrary, we must first enter a value assigned to the initial reported that the
ysfh
- 这是用C语言的编写的约瑟夫环的代码,而且是用链表编写的,开发环境是vc6.0,-This is prepared by using C language code Joseph Central, and are prepared to use linked lists, development environment are vc6.0,
ysfh
- 约瑟夫环问题 很标准 输入很合理 数据结构课程设计内容-Joseph Central question is a very reasonable standard input data structure the content of the curriculum design
ysfh
- 约瑟夫环 有一种游戏叫约瑟夫换,本程序用c++实现约瑟夫环游戏-Central Joseph Joseph have a game called for, the procedures for using c++ to achieve Joseph Central game
ysfh
- 用单循环链表编写的约瑟夫环,应用c语言编写-Josephus MADE BY C
ysfh
- 约瑟夫环的实现代码,适合初学c语言或者c++的-Joseph Ring' s implementation code, suitable for beginners or c language c++ in. . . . .
ysfh
- 约瑟夫环的问题采用的是典型的循环链表的数据结构,就是将一个链表的尾元素指针指向队首元素。 解决问题的核心步骤: 1.建立一个具有n个链结点,无头结点的循环链表; 2.确定第1个报数人的位置; 3.不断地从链表中删除链结点,直到链表为空。 具体过程就是先建一个单向循环链表,用来存储这些人的编码和密码。然后删掉报数为m的人,在删除的同时将这个人的密码和标号输出。直到把这个链表删空为止。这就是我解决这个问题的方