鏈表---移除未排序鏈表中的重複節點

//1使用緩衝區N 時間複雜度N public static void deleteDups(ListNode head) { Hashtable<Integer,Boolean> table = new Hashtable<Integer,Boolean>(); //當前指針的前一個指針 ListNode pre = null;
相關文章
相關標籤/搜索