搜索资源列表
文件运算器
- 问题描述:加减乘运算器。 要 求: 输入方式:使用给定文件进行输入; 输出方式:使用文件进行输出; 使用的数据结构:双向链表 实现的功能:实现任意位数的正负整数或小数的加法、减法和乘法运算。 具体要求:每个结点存储一位数字。算出的结果若是小数,整数部分的高位若为0要去掉,小数部分的低位若为0要去掉,若0085.56700,最后结果应为85.567。 文件说明:给定的文件a*.txt为第一个数,b*.txt为第二个数,要求加法产生的结果存储在add*.txt中,减法产生
Bigint
- 利用双向链表实现对两大整数的相加运算。 可以修改数组长度实现更大整数的相加
DataTypeDemo7.2
- 这是我在公司空闲时写的一个数据结构库,用OO实现,两层继承关系,从双向链表实现到图.希望大家多提建议~!-This is my spare time in the company write a data structure for use OO achieved, the two-tier succession, from two-way to achieve Chain map. We hope more suggestions ~!
JOSEPHUS问题
- 这是一个Josephus问题的C++代码,用双向链表实现.有问题题请联系ho1983xx@tom.com (2005-5-22,VC,1KB,下载0次)【向站长举报此文件和某个同类文件可能重复】-This a C++ code about Josephus problem, and use two-way chain form to realize.If you have any problem, please contact ho1983xx@tom.com
双向链表实现
- 有关双向链表的实现
CommonQueue
- 一个用pthread和双向链表实现的队列模板-A two-way linked list with pthread and realize the queue template
star
- 使用双向链表实现的通讯录。我的课程设计。-The realization of the use of two-way contacts list. My curriculum design.
1
- 用双向链表实现快速排序的递归算法,输出排序完的序列-The realization of two-way linked list with recursive quick sort algorithm, sort the output end of the sequence
listtest
- 双向链表 实现查找 删除 排序等功能-Remove Two-way linked list ranking functions Lookup
Ch2_5
- 该程序用双向链表实现存储文件中的单词,并正向和逆向打印。-The program stores files using two-way linked list of words to achieve, and forward and reverse printing.
Long-integer
- 长整数运算(双向链表),实现长整数无限长加减法的运算-Long integer (two-way linked list), to achieve long-integer addition and subtraction of infinite computing
双向链表 课程设计
- 双向链表 课程设计得优,实现功能为通讯录,界面没写,调试得没有bug-Doubly linked list of curriculum design excellent functionality for the address book, the interface did not write, debug, not bug
phonebook
- 利用双向链表实现电话薄功能,并能进行查找、储存和输出等功能-Doubly linked list phone book function, and find, store and output functions.
1
- 冒泡排序的双向链表实现,通过交换结点指针实现数据的交换,而不是单纯的交换结点中的数值-Bubble sort doubly linked list implementation
Queue
- 用双向链表实现的一个任务队列,把自己定义的任务继承基类BaseQueue,可以实现对任务的增加,删除,优先级的设置,获取任务等等。-With a doubly linked list to achieve a task queue , put their defined tasks inherit the base class BaseQueue, can be added to the task , delete, priority setting , access to the task a
wirhproblem
- 这是一个Josephus问题的C++代码,用双向链表实现,很好-This is a c++ code, Josephus problem with two-way linked list implementation, is very good
0445898
- 这是一个Josephus问题的C++代码,用双向链表实现,很好-This is a c++ code, Josephus problem with two-way linked list implementation, is very good
wvth-linked-list
- 这是一个Josephus问题的C++代码,用双向链表实现,很好(This is a c + + code, Josephus problem with two-way linked list implementation, is very good)
111
- 双向链表的基本功能的实现,为一个demo程序(The realization of the basic function of two-way linked list, for a demo program)
双向链表的多线程安全读写
- C++实现了双向链表的操作 使用线程同步技术实现了线程的安全读写 提供了4种链表操作(插入、查询、替换、删除)的测试用例