数据结构--栈--链式存储
摘要:
栈的链式存储跟线性表的链式存储一样,只是添加删除数据的方式不同。编译器:GCC#include <stdio.h>typedef int elemType;struct sNode{ elemType data; struct sNode *next;};/* 1.初始化栈为空*/void initStack(struct sNode **hs){ *hs = NULL; return;} /* 2.向链中插入一个元素(入栈) */void push(struct sNode **hs, elemType x){ struct sNode *temp; te... 阅读全文
posted @ 2012-07-02 15:35 尼古拉斯豆 阅读(192) 评论(0) 推荐(0) 编辑