搜索资源列表
shunxu
- //顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #define ListSize 100 //表最大长度 //结构定义 typedef struct SeqList { int node[ListSize] //存放表结点 int length //当前表长度 } SeqList //插入元素
data_structure1
- 1、顺序表 Seqlist.h Test.cpp 2、单链表 ListNode.h SingleList.h test.cpp 3、双向链表 NodeList.h DoubleList.h Test.cpp 4、循环链表 ListNode.h CircularList.h Test.cpp -1, the order form Seqlist.h Test.cpp 2, single-chain ListNode
Seqlist
- 数据结构Seqlist.h头文件,包含ListSize,ListEmpty,Find,GetData,Insert,Delete,ClearList-Seqlist.h data structure header files, including ListSize, ListEmpty, Find, GetData, Insert, Delete, ClearList
seqlist
- seqlist.h 实现顺序链表的基本功能-seqlist.h has accomplished the basic functions of a sequence list