搜索资源列表
fei
- 实现一个一元多项式简单的加法计算器。 一元多项式简单的加法计算器的基本功能为: (1)输入并建立多项式; (2)输出多项式; (3)两个多项式相加,并建立输出多项式。 用带头结点的有序链表
0003
- c++链表插入操作,且链表数据元素有序,在插入时对数据进行比较,让其有序-c List insertion and data elements in an orderly List, when inserted in the data, so in an orderly
exp1
- 操作系统实验一 体验Nachos下的并发程序设计 用C++实现双向有序链表; 在nachos系统中使用你所写的链表程序并演示一些并发错误 -Experience Nachos operating system under test a concurrent programming using C++, ordered two-way linked list in nachos system written list to use your program and demonstr
os1
- nachos下的并发程序设计,操作系统实验,用C++实现双向有序链表;-nachos of concurrent programming, operating system experiments, using C++ to achieve a two-way linked list in an orderly manner
2_3
- 合并两个链表的程序段 ha和hb分别是两个带表头结点的非递减有序单链表的表头指针, 试设计一个算法, 将这两个有序链表合并成一个非递减有序的单链表。-Merge two lists block ha and hb are the two with a header node non-decreasing order single linked list head pointer, try to design an algorithm, these two ordered lists into
sy1
- 从文件输入一批整数,建立有序链表(升序)-this is a yuanma.
两个有序链表的交集
- 求两个有序链表的交集,并在另一行显示出来。(Find the intersection of two ordered lists, and show them on another line.)
Merge
- 1、分别用顺序表和链表实现 2、利用菜单选择相应功能 3、能连续执行两表合并(1. The implementation of the sequence table and the chain table 2. Use the menu to select the corresponding function 3. Continuous execution of two table merging)
链式前向星
- 链式前向星是一种存储图的方法。如果你需要一个有序的边序列,如果排序的话用快拍O(nlogn),而链式前向星可以避免这种排序。但是数据规模较小时速度比不上邻接矩阵。 如果说邻接表是不好写但效率好,邻接矩阵是好写但效率低的话,前向星。前向星固然好些,但效率并不高。而在优化为链式前向星后,效率也得到了较大的提升。虽然说,世界上对链式前向星的使用并不是很广泛,但在不愿意写复杂的邻接表的情况下,链式前向星也是一个很优秀的数据结构。