摘要: class RandomListNode { int label; RandomListNode next = null; RandomListNode random = null; RandomListNode(int label) { this.label = label; } } /** * 阅读全文
posted @ 2020-08-22 20:25 Adom_ye 阅读(55) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; class TreeNode { int val = 0; TreeNode left = null; TreeNode right = null; public TreeNode(int val) { this.val = val; } } 阅读全文
posted @ 2020-08-22 19:35 Adom_ye 阅读(89) 评论(0) 推荐(0) 编辑