摘要: public class AE { public static void main(String[] args) { //String s = "abacdecfgab"; String s = "abacdbe"; System.out.printl... 阅读全文
posted @ 2015-10-19 11:11 AerialLadder 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 1 // 1.就地反转法 2 public ListNode reverseList1(ListNode head) { 3 if (head == null) 4 return head; 5 ListNode dummy ... 阅读全文
posted @ 2015-10-19 10:52 AerialLadder 阅读(157) 评论(0) 推荐(0) 编辑