码迷,mamicode.com
首页 > 其他好文 > 详细

Sort An Unsorted Stack

时间:2018-05-17 11:41:06      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:sort   tput   using   pre   经典   new   asc   null   tac   

Given a stack of integers, sort it in ascending order using another temporary stack.

Examples:

Input : [34, 3, 31, 98, 92, 23]
Output : [3, 23, 31, 34, 92, 98]

Input : [3, 5, 1, 4, 2, 8]
Output : [1, 2, 3, 4, 5, 8]


经典题,这道题的套路是创建一个temp stack 用于元素的存取

    public Stack<Integer> sortstack(Stack<Integer> input){
        if(input == null){
            return null;
        }
        Stack<Integer> tempStack = new Stack<>();
        
        while(!input.isEmpty()){
            int temp = input.pop();
            while(!tempStack.isEmpty() && tempStack.peek() > temp){
                input.push(tempStack.pop());
            }
            tempStack.push(temp);
        }
        return tempStack;
    }

 



Sort An Unsorted Stack

标签:sort   tput   using   pre   经典   new   asc   null   tac   

原文地址:https://www.cnblogs.com/incrediblechangshuo/p/9049307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!