摘要: import java.util.Stack;/** * 逆序一个栈,不申请额外空间,只使用递归函数 */public class RevertStack { public static void main(String[] args) { Stack<Integer> stack = new St 阅读全文