搜索资源列表
inverssinglelist
- 将线性表逆置,即使元素排列次序颠倒过来,成为逆线性表E’={ en , en-1 , … , e2 , e1 },要求逆线性表占用原线性表空间,并且用顺序表和单链表两种方法表示,分别用两个程序来完成-Will be home against the linear form, even if the elements in reversed order, become the inverse linear form E ' = (en, en-1, ..., e2, e1), request
ArrayLlist
- 分别用顺序表和单链表作为存储结构,完成:(1)实现线性表(a0, a1, a2, a3, …,an-1)就地逆置的操作。(2)实现将x插入一个递增有序表L中,并使L仍是一个有序表。(3)实现统计在一个输入字符串中各个不同字符出现的频度。 -Were used to sequence the table and a single list as the storage structure, completed: (1) to achieve a linear form (a0, a1, a2, a
ReverseList
- 用来实现数据结构中顺序表的就地逆置算法功能 -reverselist
shunxubiao
- 数据结构中顺序表进行逆置,对于数据结构中顺序表的初学者非常有用-Sequence table in the data structure in the inverse position, is very useful for the data structure of sequence table beginners
Text1
- 这是一个顺序表的逆置,程序较为简洁。不包含删除,插入的功能。 -这是一个顺序表的逆置,程序较为简洁。不包含删除,插入的功能This is a inverse order table, program more concise. Does not contain the delete, insert function.
list_opposite
- 使用顺序栈实现单链表的逆置,顺序栈存储单链表每个节点的地址,然后顺序取出栈的值,打印输出-Order to achieve a single linked list using the inverse of the stack is set, the order stack memory address for each node a single list, and then remove the stack order of value, the printout
No1
- 1、设线性表以顺序存储结构存储,且递增有序。设计算法,将x插入到线性表的适当位置上,以保持线性表的有序性。 2、用数组作存储结构,设计算法,仅用一个辅助结点,实现将线性表中的结点循环右移k位。 3、用数组作存储结构,设计算法,仅用一个辅助结点,实现将线性表逆置。 -1, set the table in order to store the linear structure of the storage, and the increasing order. Design algori
link
- 线性表的逆置,以顺序表为存储结构,实现线性表就地(使用尽可能少的附加空间)逆置。-Set against the linear form, in the order table storage structure, linear table place (using as little additional space) against the home.
list
- c语言异质链表,创建链表 遍历链表输出 链表的插入(链头插入、链尾插入、按某种顺序插入) 链表的删除(链头节点删除、链尾节点删除、满足某种条件的节点删除) 链表的逆置 链表的销毁 两个链表的合并-c language heterogeneous list, create a list Traverse the l
masm
- 建立长度为n的顺序表,然后将表中的数据元素逆置,即若表中原来的数据元素序列为(a0,a1,a2,…,an),则逆置后的数据元素序列为(an,an-1,an-2,…,a1,a0)。(数据类型为字符型) 输入 第一行为顺序表的长度n; 第二行为顺序表中的数据元素. 输出 输出为逆置后的顺序表.(helloworld jhhhhh)