摘要: 1 /** 2 * 在O(1)的时间删除链表的节点 3 * 4 * @author 5 * 6 */ 7 public class Solution { 8 9 public static void deleteNode(Node head, Node deletedNode) { 10 if (null == head || null... 阅读全文
posted @ 2016-09-16 23:36 Mr.van_Gogh 阅读(374) 评论(0) 推荐(0)