链式栈(头删头插||尾插尾删)

#ifndef __STACKLINK_H__
#define __STACKLINK_H__
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef int datatype;
typedef struct node{
	union{
		int len;
		datatype data;
	};
	struct node*next;
}Stacklink;
void Output(Stacklink*top);
Stacklink* Create();
//入栈 尾插尾删
void Insert(Stacklink*top,datatype value);
//出栈
int Pop(Stacklink*top);

#endif
#include"Stacklink.c"
int main(int argc, const char *argv[])
{
	Stacklink*L=Create();
	if(L==NULL){
		printf("栈创建失败\n");
		return -1;
	}
	while(1){
		char ch[10];
		datatype value;
		printf("\n输入入栈的元素:");
		scanf("%d",&value);
		Insert(L,value);
		printf("还需要继续y/n?");
		scanf("%s",ch);
		if(strcmp(ch,"n")==0){
			break;
		}
	}
	printf("\n从栈底到栈顶:");
	Output(L);
	while(1){
		char ch[10];
		if(Pop(L)==-1){
			break;
		}
		printf("\n还需要继续y/n?");
		scanf("%s",ch);
	
				if(strcmp(ch,"n")==0){
			break;
		}
	}
	printf("\n从栈底到栈顶:");
	Output(L);
	return 0;
}
#include"Stacklink.h"
Stacklink* Create()
{
	Stacklink*top=(Stacklink*)malloc(sizeof(Stacklink));
	if(top==NULL){
		printf("创建栈失败\n");
		return NULL;
	}
	top->len=0;
	top->next=NULL;
	return top;
}
//入栈 尾插尾删
void Insert(Stacklink*top,datatype value)
{
	Stacklink*p=(Stacklink*)malloc(sizeof(Stacklink));
	if(p==NULL){
		printf("创建新节点失败\n");
		return;
	}
	p->data=value;
	p->next=NULL;
	printf("%d已入栈\n",p->data);
	Stacklink*q=top;
	while(q->next){
		q=q->next;
	}
	q->next=p;
	top->len++;
}
void Output(Stacklink*top)
{
	while(top->next!=NULL){
		top=top->next;
		printf("%d\t",top->data);
	}
}
//出栈
int Pop(Stacklink*top)
{
	if(top->len==0){
		printf("空栈\n");
		return -1;
	}
	Stacklink*p=top;
	while(p->next->next){
		p=p->next;
	}
	Stacklink*q=p->next;
	printf("\n%d已出栈",q->data);
	p->next=NULL;
	free(q);
	q=NULL;
	top->len--;
	return 0; 
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值