摘要: #includeusing namespace std;typedef struct _NODE_{ int a; _NODE_* pNext;}Node,*pNode;typedef struct _TABLE_{ pNode pHead; int iNodeCount;}Table,*pTable;void InitStack(pTable pTableTemp);bool PushStack(pTable pTableTemp, int a);bool PopStack(pTable pTableTemp,int* a);bool GetTop(pTable pT... 阅读全文
posted @ 2013-10-25 12:27 Geekers 阅读(224) 评论(0) 推荐(0) 编辑