如何反转一个栈

package Collections;


import java.util.Collections;

import java.util.Stack;


import huidiaoxiancheng.mainthread;


/** 

 * @author 作者 刘小明

 * @email [email protected] 

 * @version 创建时间:2014年8月12日 上午12:57:42 

 * 类说明  反转一个栈

 */

public class fanzhuanzhan {

    public static void main(String[] args) {

           Stack stack = new Stack();

           stack.push("he");

           stack.push("saw");

           stack.push("a");

           stack.push("racecar");

           System.out.println(stack);

           Collections.reverse(stack); 

           System.out.println(stack);

       }

}


你可能感兴趣的:(如何反转一个栈)