文件名称:lianbiao
介绍说明--下载内容均来自于网络,请自行研究使用
链表的应用
(1).键盘输入一组元素,建立一个无头结点的单向链表(无序)。
(2).遍历(打印)单向链表。
(3).把单向链表中元素逆置(不允许申请新的结点空间)。
(4).在单向链表中删除所有的偶数元素结点。
(5).对链表排序,排序后链表元素按照非递减方式排列(注意:排序时如果要交换两个结点的顺序,不得通过交换结点的内容,而需要使用改变指针的方式交换结点的位置。建议使用直接插入排序算法)。
(6).利用算法5建立两个非递减有序单向链表,然后合并成一个非递减链表。
(7).利用算法1建立的链表,删除链表中的重复元素。
(8).利用算法1建立的链表,实现将其分解成两个链表,其中一个全部为奇数,另一个全部为偶数(尽量利用已知的存储空间)。
(9).判断算法1和算法5生成单链表所表示的集合是否相等。
(10).在主函数中设计一个简单的菜单,分别调试上述算法。
【选作内容】
(11).利用算法5建立两个非递减有序单向链表,然后合并成一个非递增链表。
(12).采用单向链表实现一元多项式的存储并实现两个多项式相加并输出结果。
-
The application list
(1). Keyboard input a set of elements to create a free one-way linked list head node (disorder).
(2). Traverse (print) one-way linked list.
(3). One-way linked list of elements in the inverse set (not allowed to apply the new node space).
(4). In the one-way linked list to remove all of the even elements of nodes.
(5). Sort of linked list, sorted list elements arranged in accordance with non-decreasing (Note: If you want to sort the order to swap two nodes, not by the content of the exchange nodes, and need a way to change the pointer location of the exchange node is recommended using direct insertion sort algorithm).
(6). The use of algorithms to create two non-decreasing order 5 one-way linked list, and then merged into a non-decreasing list.
(7). List established by the use of Algorithm 1, to delete the list of repeating elements.
(8). List established by the use of Algorithm 1, to achieve its broken down into two lists, one of which all of the
(1).键盘输入一组元素,建立一个无头结点的单向链表(无序)。
(2).遍历(打印)单向链表。
(3).把单向链表中元素逆置(不允许申请新的结点空间)。
(4).在单向链表中删除所有的偶数元素结点。
(5).对链表排序,排序后链表元素按照非递减方式排列(注意:排序时如果要交换两个结点的顺序,不得通过交换结点的内容,而需要使用改变指针的方式交换结点的位置。建议使用直接插入排序算法)。
(6).利用算法5建立两个非递减有序单向链表,然后合并成一个非递减链表。
(7).利用算法1建立的链表,删除链表中的重复元素。
(8).利用算法1建立的链表,实现将其分解成两个链表,其中一个全部为奇数,另一个全部为偶数(尽量利用已知的存储空间)。
(9).判断算法1和算法5生成单链表所表示的集合是否相等。
(10).在主函数中设计一个简单的菜单,分别调试上述算法。
【选作内容】
(11).利用算法5建立两个非递减有序单向链表,然后合并成一个非递增链表。
(12).采用单向链表实现一元多项式的存储并实现两个多项式相加并输出结果。
-
The application list
(1). Keyboard input a set of elements to create a free one-way linked list head node (disorder).
(2). Traverse (print) one-way linked list.
(3). One-way linked list of elements in the inverse set (not allowed to apply the new node space).
(4). In the one-way linked list to remove all of the even elements of nodes.
(5). Sort of linked list, sorted list elements arranged in accordance with non-decreasing (Note: If you want to sort the order to swap two nodes, not by the content of the exchange nodes, and need a way to change the pointer location of the exchange node is recommended using direct insertion sort algorithm).
(6). The use of algorithms to create two non-decreasing order 5 one-way linked list, and then merged into a non-decreasing list.
(7). List established by the use of Algorithm 1, to delete the list of repeating elements.
(8). List established by the use of Algorithm 1, to achieve its broken down into two lists, one of which all of the
(系统自动生成,下载前可以参看下载内容)
下载文件列表
链表.cpp