发布时间:2013-01-04 19:07:59
#include <stdio.h>#include <stdlib.h>typedef struct node{ int data; struct node *next;}StackNode;//置空栈StackNode* Init_LinkStack(StackNode *top){ top=NULL; return top;}//判空栈int Empty_LinkStack(StackNode &n......【阅读全文】
阅读(1556) | 评论(0) | 转发(0)