栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

链栈C语言实现

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

链栈C语言实现

#include "stdio.h"    
#include "stdlib.h"   

#include "math.h"  
#include "time.h"

typedef struct StackNode  //栈中的每个节点
{
	int data;
	struct StackNode* next;
}StackNode;

typedef struct    //栈
{
	StackNode* top;//栈的顶节点,是一个指向节点的地址
	int count;
}linkstack;

int initlist(linkstack* L)
{
	L->top = (StackNode*)malloc(sizeof(StackNode));
	L->count = 0;
	L->top = NULL;
	return 1;

}

int push(linkstack* L,int value)
{
	L->count++;
	StackNode* S;
	S = (StackNode*)malloc(sizeof(StackNode));
	S->data = value;
	S->next = L->top;
	L->top = S;
	return 1;

}

int pop(linkstack* L)
{
	int i, j;
	j = L->count;
	if (j == 0)
	{
		printf("栈为空");
		return 0;
	}
	i = L->top->data;
	StackNode* S;
	S = L->top;
	L->top = S->next;
	free(S);
	L->count--;
	return i;
}

int seelist(linkstack L)
{
	StackNode* S;
	S = L.top;
	while (S)
	{
		printf("%d ", S->data);
		S = S->next;
	}
	printf("n");
	return 1;
}

int main()
{
	int i;
	linkstack L;
	initlist(&L);
	for (i = 0; i < 3; i++)
	{
		push(&L, i);
	}
	seelist(L);
	pop(&L);
	seelist(L);
	pop(&L);

}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/854194.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号