顺序栈算法

/*
设以整数序列1,2,3,4作为栈S的输入,利用push(进栈)和pop(出栈)操作,写出所有可能的输出编程实现算法。
*/
#include <stdio.h>
#define MaxSize 10
using namespace std;
struct stacknode
{
    int data[MaxSize];
    int top;
} st;
int total=4;
void initstack()
{
    st.top=-1;
}
void push(int n)
{
    st.top++;
    st.data[st.top]=n;
}
int pop()
{
    int temp;
    temp=st.data[st.top];
    st.top--;
    return temp;
}
bool empty()
{
    if(st.top==-1)
        return true;
    else
        return false;
}
void process(int pos,int path[],int curp)
{
    int m,i;
    if(pos<=total)
    {
        push(pos);
        process(pos+1,path,curp);
        pop();
    }
    if(!empty())
    {
        m=pop();
        path[curp]=m;
        curp++;
        process(pos,path,curp);
        push(m);
    }
    if(pos>total&&empty())
    {
        printf(" ");
        for(i=0; i<curp; i++)
            printf("%d",path[i]);
        printf("\n");
    }
}
int main()
{
    int path[MaxSize];
    initstack();
    printf("所有输出序列:\n");
    process(1,path,0);
    return 0;
}

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值