摘要:
本题要求实现链式表的操作集。函数接口定义: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)