摘要: 1,将1-9入队列 2,出队列 3,进栈 4,出栈 #include<stdio.h> #include<stdlib.h> #include "stack.h"; #define Capacity 9 typedef struct Node { int data; struct Node* nex 阅读全文
posted @ 2020-05-12 22:21 shanlu 阅读(2044) 评论(0) 推荐(0) 编辑