摘要: class ListNode{ int val ; ListNode next; public ListNode(int x) { val = x; } public ListNode(int[] arr) { if(arr == null || arr.length == 0) { throw ... 阅读全文
posted @ 2018-10-21 17:15 高圈圈 阅读(1310) 评论(0) 推荐(0) 编辑
摘要: 这两者是不同的: arr == null; arr.length == 0; 阅读全文
posted @ 2018-10-21 16:31 高圈圈 阅读(641) 评论(0) 推荐(0) 编辑