数据结构习题与解析P82【例3-2-8】Java实现

package maintest;


import java.util.Stack;


import myutil.MyUtil;


/**
 * @ClassName: StackTest
 * @CreateTime Sep 17, 2013 12:03:19 PM
 * @author : Mayi
 * @Description: 数据结构习题与解析P82【例3-2-8】设以整数序列1,2,3,4作为顺序栈st的输入,利用push(进栈)和pop(出栈)操作
 * 写出所有可能的输出并编程实现算法。
 * 输出:
 * 4,3,2,1。
 * 3,4,2,1。
 * 3,2,4,1。
 * 3,2,1,4。
 * 2,4,3,1。
 * 2,3,4,1。
 * 2,3,1,4。
 * 2,1,4,3。
 * 2,1,3,4。
 * 1,4,3,2。
 * 1,3,4,2。
 * 1,3,2,4。
 * 1,2,4,3。
 * 1,2,3,4。
 *
 */
public class StackTest {


	/**
	 * @param args
	 */
	public static void main(String[] args) {
		int[] path=new int[]{1,2,3,4};
		process(1,path,0);
	}
	static int total=4;
	@SuppressWarnings("unchecked")
	static Stack st=new Stack();
	@SuppressWarnings("unchecked")
	public static void process(int pos,int path[],int curp){
		int m;
		if(pos<=total){
			st.push(pos);
			process(pos+1, path, curp);
			st.pop();
		}
		if(!st.isEmpty()){
			m=Integer.parseInt(st.pop().toString());
			path[curp]=m;
			curp++;
			process(pos, path, curp);
			st.push(m);
		}
		if(pos>total&&st.isEmpty()){
			MyUtil.Prt("输出:");
			for (int j = 0; j < curp; j++) {
				MyUtil.Prt(path[j]);
				if(j==curp-1){
					MyUtil.Prt("。");
				}else{
					MyUtil.Prt(",");
				}
			}
			MyUtil.Prtln("");
		}
	}


}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值