摘要:
//顺序表基本运算算法 #include <stdio.h> #include <malloc.h> #define MaxSize 50 typedef int ElemType; typedef struct { ElemType data[MaxSize]; //存放顺序表元素 int len 阅读全文
posted @ 2020-10-29 21:31
--琛琛--
阅读(93)
评论(0)
推荐(0)
摘要:
//单链表基本运算算法 #include <stdio.h> #include <malloc.h> #include<iostream> using namespace std; typedef int ElemType; typedef struct LNode { ElemType data; 阅读全文
posted @ 2020-10-29 21:28
--琛琛--
阅读(115)
评论(0)
推荐(0)