摘要: 1 public static ListNode removeElement(ListNode head, int val) { 2 if (head == null) return null; 3 4 ListNode dummy = new L... 阅读全文
posted @ 2015-08-01 10:32 魅惑你妹 阅读(118) 评论(0) 推荐(0)
摘要: The material from Youtube:https://www.youtube.com/watch?v=PJzgqT2Ujek 1 public static ListNode reverse(ListNode head) { 2 if (head == null || ... 阅读全文
posted @ 2015-08-01 10:09 魅惑你妹 阅读(92) 评论(0) 推荐(0)