摘要: #include #include #include //链栈 typedef struct node { char item[30]; struct node* next; }Node; typedef struct stack { Node *top; }Stack; //队列 typedef struct queueNode { char item[30]... 阅读全文
posted @ 2018-05-10 16:10 禹某 阅读(2523) 评论(0) 推荐(0) 编辑