随笔分类 -  数据结构

sqlist --逆置 max
摘要://顺序表基本运算算法 #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 --琛琛-- 阅读(100) 评论(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 --琛琛-- 阅读(132) 评论(0) 推荐(0)