帮忙数据结构课程设计代码(C语言)
帮忙数据结构课程设计代码(C语言)
日期:2008-05-07 23:30:23 人气:1
#include
#include
struct node /*结点的数据结构*/
{
int a;
} ;
struct Stack /*栈的结构*/
{
struct node *A;
int tos;
int size;
};
init(struct Stack *S,int size) /*栈的初始化*/
{
S->A=(struct n