搜索资源列表
约瑟夫环的循环链表实现
- 约瑟夫环的循环链表实现,这个程序比较完整,有需要做试验的请速速下载。-Josephus cycle Chain achieved, the procedure is complete, the pilot needs to be done urgently requested to download.
循环链表实现Joseph
- 循环链表实现约瑟夫环,并对输入错误进行检查和提示。-cycle Chain achieve Josephus, and input error check and tips.
带队满标记的循环链表
- 带队满标记的循环链表-led full circle labeled List
循环链表解决约瑟夫问题
- 利用循环链表解决约瑟夫问题,内附源代码,详细实验报告,C++可以运行
循环链表实现Joseph
- 循环链表实现约瑟夫环,并对输入错误进行检查和提示。-cycle Chain achieve Josephus, and input error check and tips.
带队满标记的循环链表
- 带队满标记的循环链表-led full circle labeled List
D_List
- 简单的循环链表算法-simple algorithm cycle Chain
cyclist
- 链表的基本操作,循环链表的一个应用实例,围桌问题的一个解决方法!-Chain basic operation, the recycling Chain an example, sat around the table in a solution!
约瑟夫环的循环链表实现
- 约瑟夫环的循环链表实现,这个程序比较完整,有需要做试验的请速速下载。-Josephus cycle Chain achieved, the procedure is complete, the pilot needs to be done urgently requested to download.
C语言演示链表操作
- 数据结构的链表关系,用TC2.0 编写,比较完整,可以作为学生的教学用-data structure objectlist relations with the preparation WITH TC 2.0, a more comprehensive and can be used as teaching students
数据结构上机实习
- 数据结构上机实验 实验题目:两个有序循环链表合并成一个有序循环链表 实验题目:欧洲地图最短路径 实验题目:稀疏矩阵基本运算及转置 实验题目: 已给定先序构造一棵二叉树的算法,请你完成其余部分,包括先序、中序、后序遍历 二叉树并打印出来。先序序列建立二叉树的顺序读入字符为A B C Ф Ф D E Ф G Ф Ф F Ф Ф Ф,注意输入时Ф用空格代替。 实验题目:复数抽象数据类型的实现-Data
长整形运算
- 一、问题描述 设计一个实现任意长的整数进行加法运算的演示程序。 二、需求分析 (1)利用双向循环链表实现长整数的存储,每个结点含一个整形变量,任何整形变量的范围是-(215-1) ~ (215-1)。输入和输出形式:按中国对于长整数的表示习惯,每四位一组,组间用逗号隔开。-a problem describe the design to achieve an arbitrarily long integer additi
12304216
- 约瑟夫问题的程序 利用单向循环链表纯出结构模拟过程 按照列的顺序输出各人的编号-Joseph procedures for the use of the one-way circle Chain out pure simulation process in accordance with the structure shown in the sequence each output the numbers
ClassList
- 链表和循环链表的操作(类) 两个类,包括了对链表和循环链表的创建(将数组转换成链表).计算节点数,释放链表,颠倒链表.-Chain Chain and recycling operations (category) two categories. Listless including the right circle and the creation Chain (to be converted into an array List
Circlist_Josephus3_4
- 循环链表的应用 循环链表的应用 很方便的实现-cycle Chain cyclic chain of convenience Implementation
ring_que
- C实现的循环链表,灵活好用,请多多使用 -C achieve the cycle chain, flexible handy Please excuse the use of
Josephcircle
- 思想很简单,就是一个循环链表 但要说明的是:我之所以用clist(1)来初始化,主要是我刚开始编的时候没打算解决约瑟夫环,只是想编一个带表头的循环链表,然后我用从这个程序改过来的,所以代码可以进一步优化。-Thinking is very simple, that is, a cycle list but would like to note is: I use clist (1) to initialize, mainly
ldf19870326
- 一个没有错误的约瑟夫环问题的源代码,约瑟夫问题(Joseph)的一种描述方法是:编号为1,2,.......,n的n个人按顺时针方向围坐一个圈,每个人持人一个密码(正整数)。一开始任选一个正整数作为报数上限值m,从第一个人开始按顺时针方向自1开始顺序报数,报到m的人出列。将他的密码作为新的m值,从他在顺时针方向上的下一个人开始重新从1报数,如此下去,直至所有人全部出列为止。试设计一个程序求出出列顺序。 利用单向循环链表存储结构模拟此
双向循环链表
- 双向循环链表 利用Java编写,实用方法插入把Object x插入到链表的第 i 个位置(Two-way circular linked list, written using Java, practical method to insert the Object x inserted into the list of the first I position)
约瑟夫问题-循环链表典型应用
- 约瑟夫问题-循环链表典型应用 n 个人围成一个圆圈,首先第 1 个人从 1 开始一个人一个人顺时针报数, 报到第 m 个人,令其出列。然后再从下一 个人开始从 1 顺时针报数,报 到第 m 个人,再令其出列,…,如此下去,求出列顺序。 求解: 假设 m = 3, n = 8 (1 2 3 4 5 6 7 8) 结果: 3 6 1 5 2 8 4 7(Joseph problem - typical applica