摘要: #include#include#includetypedef struct node{ int value; struct node * pNext;}NODE,*PNODE;typedef struct queue{ PNODE front; PNODE ... 阅读全文
posted @ 2016-11-27 23:18 pengwill 阅读(97) 评论(0) 推荐(0) 编辑
摘要: #include#include#includetypedef struct node{ int value; struct node * pNext;}NODE,*PNODE;typedef struct queue{ PNODE front; PNODE ... 阅读全文
posted @ 2016-11-27 23:18 pengwill 阅读(128) 评论(0) 推荐(0) 编辑
摘要: #include#include#includetypedef struct Node{ int value; struct Node * next;}NODE,*PNODE;typedef struct Stack{ PNODE top; PNODE bot... 阅读全文
posted @ 2016-11-27 23:17 pengwill 阅读(99) 评论(0) 推荐(0) 编辑
摘要: #include#include#includetypedef struct Node{ int value; struct Node * next;}NODE,*PNODE;typedef struct Stack{ PNODE top; PNODE bot... 阅读全文
posted @ 2016-11-27 23:17 pengwill 阅读(139) 评论(0) 推荐(0) 编辑