考虑效率,用栈实现。
import java.util.Stack;
public class StackTest { public static void main(String argv[]) { Stack<String> stack = new Stack<String>(); for(String s : "I have a round peach".split(" ")) { stack.push(s);//按字符串原顺序压栈
} while(!stack.empty()) { System.out.print(stack.pop() + " ");//弹栈并输出
} } }
|
系统将输出“peach round a have I ”。
阅读(882) | 评论(0) | 转发(0) |