摘要: #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 阅读(107) 评论(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 阅读(133) 评论(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 阅读(104) 评论(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 阅读(144) 评论(0) 推荐(0)