摘要: 我在电脑上敲了一遍,又在纸上模拟了一遍 下面记录在电脑上敲的: 一、用数组实现栈 #include <stdio.h> #include <string.h> #define MaxSize 50 typedef struct{ int data[MaxSize]; int top; }stack; 阅读全文
posted @ 2023-08-05 18:47 TLSN 阅读(143) 评论(0) 推荐(0) 编辑