棧的C數組實現

來源:互聯網
上載者:User

標籤:棧   順序棧   資料結構   先進後出   

棧是一種先進後出的資料結構.

棧的基本操作包括:入棧,出棧,初始化棧,清空棧,遍曆棧.


C代碼如下:

#include <stdio.h>#define MaxSize 20typedef int ElemType;typedef struct stack{    ElemType Data[MaxSize];    int top;}Stack;//初始化棧void InitStack(Stack *S){    S->top=-1;}//入棧void PushStackValue(Stack *S){    printf("Input the Value of stack member:\n(0-exit)\n");    int value;    printf("Please input the 1st value of stack:\n");    scanf("%d",&value);    S->Data[++S->top]=value;    while(value)    {        S->top++;        printf("Please input the %dst value of stack:\n",S->top+1);        scanf("%d",&value);        S->Data[S->top]=value;    }}//出棧void PopStackValue(Stack *S){    if(S->top>=0)    {        printf("the stack %dst value pop out: %d\n",S->top+1,S->Data[--S->top]);    }    else    {        printf("The Stack is empty\n");    }}//判斷棧空void IsEmpty(Stack *S){    if(S->top==-1)    {        printf("The Stack is empty.\n");    }    else    {        printf("The stack is not empty.\n");    }}//清空棧void ClearStack(Stack *S){    S->top=-1;}//遍曆棧void ScanStack(Stack *S){    int i;    int len=S->top-1;    int StackArray[len];    for(i=len;i>0;i--)    {        StackArray[i]=S->Data[i--];    }    printf("The all stack member(from top to bottom) is:\n");    while(len>=0)    {        printf("%d ",S->Data[len--]);    }    printf("\n");}void main(){    Stack S;    InitStack(&S);    PushStackValue(&S);    ScanStack(&S);    IsEmpty(&S);    PopStackValue(&S);    PopStackValue(&S);    PopStackValue(&S);    PopStackValue(&S);}


運行結果如下:




轉載請註明作者:小劉

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.