搜索资源列表
多项式求和
- 1、 程序功能:本程序实现多项式的求和运算,在遇到指数相同时实行系数相加或相减,指数不同的照原样输出。最后分别输出系数和指数。 2、 运行环境:C++ 3、 算法描述:首先,把输入的的多项式进行分析,把所有的系数放入一个单链表中llist,指数放入另一个单链表llist2中。然后再在指数链表中比较有没有相同的指数,如果有相同的指数,那就把相对应的系数进行求和,并把求和结果归并到llist2中;如果指数不相等的,就直接归并到llist2中。最后以指数的降幂形式输出。
ClassicalDataStructures
- 常用的线性数据结构: 包括线性表、环形列表、队列、双端队列、单链表、双端链表、堆、栈、字符串数组等。非常有用,值得参考。-commonly used linear data structure : Table includes linear and circular table, queue, queue-end, single-linked list, double-linked list, heap, stack, as a string array. Very useful and val
list_sq2
- vc的数据结构链表应用,数据结构的链表作业,单链表-vc data structure Chain applications, data structure of the Chain operations, single-linked list
memlist
- 这是一个有关货物链表的代码,可以建立,增加,删除,清空货物.-This is a linked list of the goods code, we can set up, add, delete, emptied of goods.
shujujiegoudanlianbiao
- 输入一系列递减顺序的整数(100,50,40,30……),以0标志结束,将这些数作为data域逆序建立一个单链表;从键盘输入一个整数X,将X插入到此单链表中并保持单链表data域的值递增关系,输出此时单链表各结点data域的值;从键盘输入一个整数Y,若Y值在单链表中存在,则删除data域的值为Y的结点(注单链表中没有data域值相同的结点),并输出此时单链表各结点data域的值。-importation of a series of descending order of the integer
myCustomWizard
- 用VC++创建自定义向导程序. 设计的基本思路: 1. 采用标准的向导的工作方式。每一步就是一个对话框,向导本身也是一个对话框,用来容纳每步对话框. 2. 每步的对话框应 该没有Title、没有边界、样式为Child,当点击“下一步”或“上一步”时,将这个 对话框定位到要显示的位置。 3. 因为向导一般都包含很多步,为了管理这些页,我们可以创建一个链表来管理每一步的对话框。 4. 为了方便对话框定位,可以事先定义好位置。 -VC Wizard to create custom procedure
sjjgys
- 各种数据结构和算法演示(顺序表,链表,二叉树,图,动态查找,广义表,串,存储管理等)-various data structures and algorithms Demo (chronology, linked list, binary tree, graphics, dynamic search, generalized table, string, Storage Management)
IOCP1
- Windows 2000. --*/ 的完成端口例子,做的一个完成端口练习。 我把代码写的更清晰了一些。 还有一点,就是,我使用了一个,我叫做“双链表”的数据结构来管理IO结点和单句柄结点。这个东西是用stl里的list做的-Windows 2000. ------- / Completion of the port example, do a complete port practice. I have to write the code more clearly some of it. An
Text Forge 1.3
- Text forge is a menu based text editor written completely in C. the program uses linked list to store the contents of the file. this program also uses VDU memory to display the contents of the file.
memorylink
- 模拟动态存储管理 一、 题目 编制一个模拟动态存储管理的程序,设用一个单向链表HA表示空闲空间链;用一个单向链表HB表示已占用空间链。设链表结构如下: 起始地址 ( 正整数,大于0 ) 本块单元数( 正整数,大于0 ) 链域 (指向下一个结点的指针) 1. 在键盘上输入起始地址,本块单元数,建立起HA,HB两链表初态(输 入起始地址为0时结束); 2. 输出HA,HB两链(起始地址,单元数); 3. 输入起始地址,在HB链中撤消所对应的结点,撤消结点后输出HB链; 4. 将撤消的结点
1-sqlist
- 包括线性表,链表,用C语言写的-including linear table, linked list, using the C language to write
35127
- Addressbook using double-linked list. This example shows the use of a double-linked list by implementing an addressbook for the console. It has features like inserting, searching(linear), sorting(bubble sort), deleting and load/save to a file. I wrot
用循环单链表解决josephus问题的算法
- 用循环单链表解决josephus问题的算法-cyclic single linked list of issues to resolve Josephus Algorithm
zuoye
- 实现学生信息的录入,查找,删除,修改等操作,使用了两个类Student和Exstudent,List来实现存储,较数组和链表来说很方便。对于学生信息可以自己扩展。-Student Information realize the entry, find, delete, modify, such as the operation, use two categories of Student and Exstudent, List to realize storage, representing a
linked_list_book
- Linked List Project Book story And Book Shop Nice
LinkedList_demo
- A Beginner s Guide to the Linked List [^]
link_list
- 第一次上传,弄了一个简单的链表实现代码,希望以后有机会继续上传质量高的代码-The first upload, get a simple linked list implementation code, and hope that it will have the opportunity to upload high quality code
linked-list
- Linked list algorithm
the-creation-of-circular-linked-list
- 链表的创建以及实现查找、删除、增添节点,读取节点数据的功能-List of creating and implementing search, delete, add nodes, read the function of the node data
wvth-linked-list
- 这是一个Josephus问题的C++代码,用双向链表实现,很好(This is a c + + code, Josephus problem with two-way linked list implementation, is very good)