摘要: #define _CRT_SECURE_NO_DEPRECATE#include#include#define datatype inttypedef struct node{ datatype data; struct node* next;}STACK;//initial the stackSTACK* Init(STACK* s){ s = NULL; return s;}//push in stackSTACK* Push(STACK* s, datatype d){ STACK *p = (STACK*)malloc(sizeof(STACK)); ... 阅读全文
posted @ 2014-03-04 21:54 偶尔会寂寞 阅读(427) 评论(0) 推荐(0) 编辑