溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C語言中棧的實(shí)現(xiàn)方法

發(fā)布時間:2021-08-20 12:44:26 來源:億速云 閱讀:160 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“C語言中棧的實(shí)現(xiàn)方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“C語言中棧的實(shí)現(xiàn)方法”吧!

棧的兩種實(shí)現(xiàn)方式

通常情況下,棧的實(shí)現(xiàn)方式有兩種,一種方法是使用指針,而另一種方法則是使用數(shù)組。但是在調(diào)用程序時,我們沒有必要知道具體使用了哪種方法。

一、順序棧

#include<stdio.h>
#include<stdlib.h>
#define maxsize 64
 
 
//定義棧
typedef struct
{
	int data[maxsize];
	int top;
}sqstack,*sqslink;
 
//設(shè)置???
void Clearstack(sqslink s)
{
	s->top=-1;
}
 
 
//判斷???
int Emptystack(sqslink s)
{
	if (s->top<0)
		return 1;
	else
		return 0;
}
 
//進(jìn)棧
int Push(sqslink s, int x)
{
	if (s->top>=maxsize-1)
		return 0;
	else
	{
		s->top++;
		s->data[s->top]=x;
		return 1;
	}
}
 
// 出棧
int Popstack(sqslink s)
{
	int n;
	if (Emptystack(s)>0)
		return NULL;
	else
	{
		n=s->data[s->top];
		s->top--;
		return n;
	}
}
 
void main()
{
	sqslink s1;
	s1 =(sqslink)malloc(sizeof(sqstack));
	Clearstack(s1);
	printf("%d\n",s1->top);
	for(int i=0; i<=10;i++)
	{
		Push(s1, i);
		printf("%d is pushed into stack\n",i);
	}
	printf("top is point to %d\n",s1->top);
	printf("\n");
	int n;
	n = Popstack(s1);
	printf("number %d  is poped\n",n);
	printf("top is point to %d\n",s1->top);
 
}

C語言中棧的實(shí)現(xiàn)方法

二、鏈?zhǔn)綏?/h3>
#include<stdio.h>
#include<stdlib.h>
 
 
typedef struct node
{
	int data;
	struct node * next;
}snode,*slink;
 
struct Node
{
	slink i;
	slink n;
};
 
 
 
// 清空棧
void Clearstack(slink top)
{
	top=NULL;
}
 
//判斷棧是否為空
int Emptystack(slink top)
{
	if (top==NULL) return 1;
	else return 0;
}
 
 
// 進(jìn)棧
slink Push(slink top, int x)
{
	slink node = NULL;
	node = (slink)malloc(sizeof(snode));
	node->data = x;
	node->next = top;
	top = node;
	printf("*************************\n");
	printf("%d",top->data);
	printf("*************************\n");
	return top;
}
 
// 出棧
struct Node Pop(slink top)
{	
	slink node = NULL;
	struct Node result;
	if (Emptystack(top))
	{
	result.i=node;
	}
	else
	{
		int n;
		node = top;
		top = node->next;
		result.i = top;
		result.n = node;
		return result;
	}	
}
 
 
void main()
{
	slink top_ = NULL;
	for(int i =0; i<10;i++)
	{
		top_ = Push(top_, i);
		printf("%d is pushed in to the stack\n",i);
	}	
	int e;
	e = top_->data;
	printf("top is pointint to %d\n",e);
	printf("\n");
	printf("\n");
	printf("\n");
	slink node =NULL;
	printf("*************************\n");
	struct Node result = Pop(top_);
	if ((result.i)!=NULL)
	{
		top_ = result.i;
		node = result.n;
 
 
		e = top_->data;
		printf("top is pointint to %d\n",e);
 
		int e_node;
		e_node = node->data;
		printf("the node Poped 's data is pointint to %d\n",e_node);
		free(node);
	}
	else
	{
	printf("stack is empty");
	}
}

C語言中棧的實(shí)現(xiàn)方法

到此,相信大家對“C語言中棧的實(shí)現(xiàn)方法”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI