2012年8月3日

摘要: 引用同学一句话, 写博客不是给别人看的。 #include <stdlib.h>#include <stdio.h>#include "stack.h"void initStack(stack *s){ s->top = -1;}int isEmpty(stack *s){ if(s->top == -1) return 1; else return 0;... 阅读全文
posted @ 2012-08-03 01:32 混沌程序员 阅读(89) 评论(0) 推荐(0)

导航