09 2022 档案
摘要:#include<stdio.h> //若用printf,scanf,getchar,putchar,gets,puts函数需包含该头文件#include<malloc.h> //用malloc,free,realloc函数需包含该头文件#define MAXSIZE 100 //设线性表初始分配空
阅读全文
摘要:以下代码是我根据老师提供的部分源码及自我的认知补充注释 #include<stdio.h> //头文件#include<malloc.h> //malloc,free,realloc函数头文件#define MAXSIZE 100 //设线性表初始分配空间大小typedef int ElemType
阅读全文