摘要: #include <stdio.h> #include <stdlib.h> #include <malloc.h> #define MAXSIZE 50 typedef struct stack_Inilt { int *base; int *top; int length; } stack; v 阅读全文
posted @ 2022-05-12 19:10 error!!!! 阅读(22) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <malloc.h> typedef int elemType; typedef struct linklist { elemType data; struct linklist *next; } nod 阅读全文
posted @ 2022-05-12 18:30 error!!!! 阅读(11) 评论(1) 推荐(0)