链栈入栈与出栈(逆序输出)_数据结构
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 4 typedef int DataType; 5 struct Node { 6 DataType data; 7 struct Node* next; 8 }; 9 typedef struct Node *P 阅读全文
posted @ 2021-09-23 23:56 笛若心生 阅读(798) 评论(0) 推荐(0)
浙公网安备 33010602011771号