第4章:1.栈的定义及顺序栈

本篇文章参考的是《大话数据结构》,感谢作者程杰先生。

一:栈的定义:
1.栈是限定仅在表尾进行插入和删除操作的线性表。

栈顶:允许插入和删除的一端;
栈底:不允许插入和删除的一端;
空栈:不含有任何数据元素的栈;

2.栈又称为后进先出(last in first out)的线性表,简称LIFO结构;
栈的插入操作,叫做进栈(push),也称压栈,入栈;
栈的删除操作,叫做出栈(pop),也称弹栈;

在这里插入图片描述
二:栈的顺序存储结构及其实现:

typedef int SElemType; 	/* SElemType类型根据实际情况而定,这里假设为int */
/* 顺序栈结构 */
typedef struct
{
	SElemType data[MAXSIZE];
	int top; 		/* 用于栈顶指针 */
}SqStack;

示例:假设一个栈的MAXSIZE是5,测栈的普通情况、空栈和满栈示意图如下:
在这里插入图片描述
1.进栈操作:

/* 插入元素e为新的栈顶元素 */
Status Push(SqStack *S,SElemType e)
{
    if(S->top == MAXSIZE -1) 	/* 栈满 */
    {
    	return ERROR;
    }
    S->top++;					/* 栈顶指针增加一 */
    S->data[S->top]=e;  		/* 将新插入元素赋值给栈顶空间 */
    return OK;
}

2.出栈操作:

/* 插入元素e为新的栈顶元素 */
Status Push(SqStack *S,SElemType e)
{
    if(S->top == MAXSIZE -1) 	/* 栈满 */
    {
    	return ERROR;
    }
    S->top++;					/* 栈顶指针增加一 */
    S->data[S->top]=e;  		/* 将新插入元素赋值给栈顶空间 */
    return OK;
}

三:顺序栈:
代码:

/*
 
本篇文章参考的是《大话数据结构》,感谢作者程杰先生。

*/

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

#include "bigtalk_data_structure.h"


#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define MAXSIZE 20 /* 存储空间初始分配量 */

typedef int Status; 
typedef int SElemType; /* SElemType类型根据实际情况而定,这里假设为int */

/* 顺序栈结构 */
typedef struct
{
	SElemType data[MAXSIZE];
	int top; /* 用于栈顶指针 */
}SqStack;

static Status visit(SElemType c)
{
	printf("%d ",c);
	return OK;
}

/*  构造一个空栈S */
Status InitStack(SqStack *S)
{ 
	/* S.data=(SElemType *)malloc(MAXSIZE*sizeof(SElemType)); */
	S->top = -1;
	return OK;
}

/* 把S置为空栈 */
Status ClearStack(SqStack *S)
{ 
    S->top = -1;
    return OK;
}

/* 若栈S为空栈,则返回TRUE,否则返回FALSE */
Status StackEmpty(SqStack S)
{ 
	if (S.top == -1)
		return TRUE;
	else
		return FALSE;
}

/* 返回S的元素个数,即栈的长度 */
int StackLength(SqStack S)
{ 
	return S.top+1;
}

/* 若栈不空,则用e返回S的栈顶元素,并返回OK;否则返回ERROR */
Status GetTop(SqStack S,SElemType *e)
{
	if (S.top == -1)
		return ERROR;
	else
		*e=S.data[S.top];
	
	return OK;
}

/* 插入元素e为新的栈顶元素 */
Status Push(SqStack *S,SElemType e)
{
	if(S->top == MAXSIZE -1) /* 栈满 */
	{
		return ERROR;
	}
	S->top++;				/* 栈顶指针增加一 */
	S->data[S->top]=e;  /* 将新插入元素赋值给栈顶空间 */

	return OK;
}

/* 若栈不空,则删除S的栈顶元素,用e返回其值,并返回OK;否则返回ERROR */
Status Pop(SqStack *S,SElemType *e)
{ 
	if(S->top == -1)
		return ERROR;
	
	*e = S->data[S->top];	/* 将要删除的栈顶元素赋值给e */
	S->top--;				/* 栈顶指针减一 */

	return OK;
}

/* 从栈底到栈顶依次对栈中每个元素显示 */
Status StackTraverse(SqStack S)
{
	int i;
	i = 0;
	
	while(i <= S.top)
	{
		visit(S.data[i++]);
	}
	printf("\n");
	
	return OK;
}

//栈:顺序栈;
void test_main_4_4()
{
	
	printf("[%s:%d]:[yang] ******************* 我是分割线******************* \n",__FUNCTION__,__LINE__);	

	int j;
	SqStack s;
	int e;
	
	if(InitStack(&s) == OK)
	{
		printf("[%s:%d]:[yang] ********1****** \n",__FUNCTION__,__LINE__);	

		for(j = 1;j <= 10; j++)
		{
			//printf("\n[%s:%d]:[yang] Push j = %d \n",__FUNCTION__,__LINE__,j);
			Push(&s,j);
		}
	}		
	printf("栈中元素依次为:");
	StackTraverse(s);
	printf("[%s:%d]:[yang] StackLength(s) = %d\n",__FUNCTION__,__LINE__,StackLength(s));

	printf("[%s:%d]:[yang] ******************* 我是分割线******************* \n",__FUNCTION__,__LINE__);	

	Pop(&s,&e);
	printf("弹出的栈顶元素 e = %d\n",e);
	printf("[%s:%d]:[yang] StackLength(s) = %d\n",__FUNCTION__,__LINE__,StackLength(s));

	printf("[%s:%d]:[yang] ******************* 我是分割线******************* \n",__FUNCTION__,__LINE__);	
	printf("栈空否:%d (1:空 0:否)\n",StackEmpty(s));


	printf("[%s:%d]:[yang] ******************* 我是分割线******************* \n",__FUNCTION__,__LINE__);	

	GetTop(s,&e);
	printf("栈顶元素 e = %d 栈的长度为%d\n",e,StackLength(s));
	

	printf("[%s:%d]:[yang] ******************* 我是分割线******************* \n",__FUNCTION__,__LINE__);	

	ClearStack(&s);
	printf("清空栈后,栈空否:%d(1:空 0:否)\n",StackEmpty(s));

	#if 0


	#endif

    return 0;
}




打印:

[main:14]:[yang] ***************************************** 
[test_main_4_4:123]:[yang] ******************* 我是分割线******************* 
[test_main_4_4:131]:[yang] ********1****** 
栈中元素依次为:1 2 3 4 5 6 7 8 9 10 
[test_main_4_4:141]:[yang] StackLength(s) = 10
[test_main_4_4:143]:[yang] ******************* 我是分割线******************* 
弹出的栈顶元素 e = 10
[test_main_4_4:147]:[yang] StackLength(s) = 9
[test_main_4_4:149]:[yang] ******************* 我是分割线******************* 
栈空否:0 (1:0:)
[test_main_4_4:153]:[yang] ******************* 我是分割线******************* 
栈顶元素 e = 9 栈的长度为9
[test_main_4_4:159]:[yang] ******************* 我是分割线******************* 
清空栈后,栈空否:1(1:0:)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值