摘要: //顺序表基本运算算法 #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)
摘要: 1 //顺序表运算算法 2 #include <stdio.h> 3 #include <malloc.h> 4 #include <iostream> 5 #define MaxSize 50 6 typedef char ElemType; 7 typedef struct 8 { ElemTy 阅读全文
posted @ 2020-10-17 09:44 --琛琛-- 阅读(127) 评论(0) 推荐(0)