摘要: 1 #include 2 #include 3 #include 4 #include 5 6 typedef struct Node{ 7 int data; 8 struct Node * pNext; 9 }NODE, *PNODE; 10 11 typedef struct Stack{ 12 PNOD... 阅读全文
posted @ 2016-06-02 11:22 陆放为 阅读(994) 评论(0) 推荐(0) 编辑