摘要:
#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
禹某
阅读(2538)
评论(0)
推荐(0)

浙公网安备 33010602011771号