棧是限定僅在表尾進行插入和刪除操作的線性表,棧被稱為后進先出的線性表,分別稱為順序棧和鏈棧。
stacksize為棧的大容量,base為棧底指針,top為棧頂指針,top==base表示棧為空,top指的位置為棧頂元素的下一個位置上。
#include#define MAXSIZE 100
using namespace std;
typedef int SElemType;
typedef struct
{
SElemType* base;//棧底指針
SElemType* top;//棧頂指針
int stacksize;//??梢杂玫拇笕萘?}SqStack;
//順序棧的初始化
void InitStack(SqStack& S)
{
S.base = new SElemType[MAXSIZE];
if (!S.base)
{
exit(1);
}
S.top = S.base;
S.stacksize = MAXSIZE;
}
//順序棧的長度
int StackLength_Sq(SqStack& S)
{
return (S.top - S.base);
}
//順序棧的入棧
bool Push(SqStack& S, SElemType e)
{
if (S.top - S.base == S.stacksize)
{
return false;
}
else
{
*S.top++ = e;
return true;
}
}
//順序棧的出棧
bool Pop(SqStack& S, SElemType& e)
{
if (S.top == S.base)
{
return false;
}
else
{
e = *--S.top;
return true;
}
}
//獲取棧頂元素
SElemType GetTop(SqStack S)
{
if (S.top != S.base)
{
return *(S.top - 1);
}
}
void Print_S(SqStack& S)
{
int length = StackLength_Sq(S);
for (int i = 1; i<= length; i++)
{
cout<< *(S.top - i)<< " ";
}
cout<< endl;
}
int main()
{
SqStack S;
InitStack(S);
for (int i = 0; i< 10; i++)
{
Push(S, i * 10);
}
SElemType e, f;
cout<< "棧的長度為:"<< StackLength_Sq(S)<< endl;
Print_S(S);
cout<< "移除棧頂元素"<< endl;
Pop(S, f);
cout<< "棧的長度為:"<< StackLength_Sq(S)<< endl;
Print_S(S);
cout<< "加入棧頂元素"<< endl;
Push(S, 90);
Print_S(S);
e = GetTop(S);
cout<< "棧頂元素為:"<< e<< endl;
system("pause");
return 0;
}
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧