C语言 栈的创建、插入、删除、遍历


#include<stdio.h>
#include<stdlib.h>

typedef struct student{
	int data;
	struct student *pnext;
}node,*nodes;

typedef struct Stack{
	nodes top;//栈顶
	nodes bottom;//栈底
}*stacks,st;

void init(stacks S)//初始化栈
{
	S->top=(stacks)malloc(sizeof(st));
	if(NULL==S->top)
	{
		printf("内存分配失败!\n");
		exit(0);
	}
	S->bottom=S->top;
	S->bottom->pnext=NULL;
}

void push(stacks S,int n)//压栈
{ 
	nodes pnew;
	pnew=(nodes)malloc(sizeof(node));
	pnew->data=n;
	pnew->pnext=S->top;
	S->top=pnew;
}

void trvel(stacks S)//遍历栈
{
	nodes p;
	p=S->top;
	while(p!=S->bottom)
	{
		printf("%d ",p->data);
		p=p->pnext;
	}
}
bool Empty(stacks S)//判断是否为空栈
{
	if(S->bottom==S->top)
	return false;
	else
	return true;
}

bool Delete(stacks S)//删除栈顶元素
{
	if(Empty(S)==false)
	{
		printf("空栈\n");
		exit(0);
	} 
	nodes r;
	r=S->top;
	S->top=r->pnext;
	free(r);
	r=NULL;
	return true; 
}
 int main()
{
	struct Stack S;
	init(&S);
	push(&S,1);
	push(&S,2);
	push(&S,3);
	push(&S,4);
	trvel(&S); 
	Delete(&S);
	trvel(&S); 
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值