摘要:
##顺序表的链式存储 #include <iostream> using namespace std; typedef int ElemType; typedef struct LinkList { ElemType value; struct LinkList *next; } LinkList; 阅读全文
##顺序表的链式存储 #include <iostream> using namespace std; typedef int ElemType; typedef struct LinkList { ElemType value; struct LinkList *next; } LinkList; 阅读全文
posted @ 2022-01-26 23:40
帝宝单推人!
阅读(34)
评论(0)
推荐(0)
摘要:
网课笔记 #include <iostream> using namespace std; typedef int ElemType; typedef struct { ElemType *data; int size; int length; } SqList; bool InitList(SqL 阅读全文
网课笔记 #include <iostream> using namespace std; typedef int ElemType; typedef struct { ElemType *data; int size; int length; } SqList; bool InitList(SqL 阅读全文
posted @ 2022-01-26 11:21
帝宝单推人!
阅读(39)
评论(0)
推荐(0)

浙公网安备 33010602011771号