摘要: 数据结构课程的实验代码,本人手打 源代码,如下 1 #include <stdio.h> 2 #include<conio.h> 3 #define MAX 50 4 5 typedef struct Llist{ 6 char adata[MAX]; 7 int len; 8 }*Node,Lis 阅读全文
posted @ 2020-11-30 22:11 wu_yan 阅读(152) 评论(0) 推荐(0)