摘要:
本题要求在一个数组中实现两个堆栈。函数接口定义:Stack CreateStack( int MaxSize );bool Push( Stack S, ElementType X, int Tag );Elem... 阅读全文
posted @ 2020-01-19 21:32
Jason66661010
阅读(187)
评论(0)
推荐(0)
摘要:
本题要求实现带头结点的链式表操作集。函数接口定义:List MakeEmpty(); Position Find( List L, ElementType X );bool Insert( List L, Ele... 阅读全文
posted @ 2020-01-19 21:20
Jason66661010
阅读(332)
评论(0)
推荐(0)
摘要:
本题要求实现链式表的操作集。函数接口定义:Position Find( List L, ElementType X );List Insert( List L, ElementType X, Position P... 阅读全文
posted @ 2020-01-19 15:18
Jason66661010
阅读(317)
评论(0)
推荐(0)
摘要:
本题要求实现顺序表的操作集。函数接口定义:List MakeEmpty(); Position Find( List L, ElementType X );bool Insert( List L, Element... 阅读全文
posted @ 2020-01-19 14:49
Jason66661010
阅读(365)
评论(0)
推荐(0)
摘要:
本题要求实现一个函数,将给定的单链表逆转。函数接口定义:List Reverse( List L );其中List结构定义如下:typedef struct Node *PtrToNode;struct Nod... 阅读全文
posted @ 2020-01-19 14:36
Jason66661010
阅读(200)
评论(0)
推荐(0)