双栈排序

来源:互联网 发布:linux ftp put命令 编辑:程序博客网 时间:2024/06/14 06:52

题目描述

请编写一个程序,按升序对栈进行排序(即最大元素位于栈顶),要求最多只能使用一个额外的栈存放临时数据,但不得将元素复制到别的数据结构中。

给定一个int[] numbers(C++中为vector&ltint>),其中第一个元素为栈顶,请返回排序后的栈。请注意这是一个栈,意味着排序过程中你只能访问到第一个元素。

测试样例:
[1,2,3,4,5]
返回:[5,4,3,2,1]
import java.util.*;public class TwoStacks {    public ArrayList<Integer> twoStacksSort(int[] numbers) {        // write code here        ArrayList<Integer> res = new ArrayList<Integer>();        if(numbers.length==0) return res;        Stack<Integer> stack1 = new Stack<Integer>();        Stack<Integer> stack2 = new Stack<Integer>();        for(int i=0; i<numbers.length; ++i){            if(stack1.isEmpty()){                stack1.push(numbers[i]);                continue;            }                        while(!stack1.isEmpty()&&stack1.peek() > numbers[i]){                stack2.push(stack1.pop());            }            stack1.push(numbers[i]);            while(!stack2.isEmpty()){                stack1.push(stack2.pop());            }        }        while(!stack1.isEmpty()){            res.add(stack1.pop());        }        return res;    }}


0 0
原创粉丝点击