输出进栈出栈的所有序列

 输出进栈出栈的所有序列

 

/* 输出进栈出栈的所有序列
 * 如 abc 则输出可以为:cba,bac,bca,abc,acb
 * input 为输入字符串,output为输出字符串,保存出栈的序列,需要O(n)的空间复杂度
 * stack<char> *s 为模拟的栈
 * 思路:递归与回溯
*/

 

#include<iostream>
#include<stack>
using namespace std;
int n=0;
void stackseq2(char *input,int in_index, stack<char> *s, char *output,int out_index) {
	if((in_index==n) && s->empty()) {
		output[n]=0;
		cout<<output<<endl;
	}
	else {
		if(in_index<n) {
			s->push(input[in_index++]);
			stackseq2(input,in_index, s, output,out_index);
			in_index--;
			s->pop();
		}
		if(!s->empty()) {
			output[out_index++]=s->top();
			s->pop();
		    stackseq2(input,in_index, s, output,out_index);
			s->push(output[--out_index]);
		}
	}
}
void main(){
	stack<char> s;
	char input[100];
	cin>>input;
	while(input[0]!='#'){
		cout<<"============="<<endl;
		n=strlen(input);
		char *output=new char[n+1];
		stackseq2(input,0, &s, output,0);
	    delete []output;
	    cin>>input;
	}
	
}


 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值