摘要: public int[] reversePrint(ListNode head) { Stack<ListNode> stack = new Stack<>(); ListNode temp = head; while(temp != null){ stack.push(temp); temp = 阅读全文
posted @ 2020-04-10 11:13 贱人郭 阅读(126) 评论(0) 推荐(0) 编辑