面试题 02.01. 移除重复节点

Posted 深林无鹿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题 02.01. 移除重复节点相关的知识,希望对你有一定的参考价值。


hash(O(n))

/**
 * Definition for singly-linked list.
 * public class ListNode 
 *     int val;
 *     ListNode next;
 *     ListNode(int x)  val = x; 
 * 
 */
class Solution 
    public ListNode removeDuplicateNodes(ListNode head) 
        int[] hash = new int[20005];
        ListNode prev = head, curr = head;
        while (curr != null) 
            if (hash[curr.val] == 0) 
                hash[curr.val] ++;
                prev = curr;
             else 
                prev.next = curr.next;
            
            curr = curr.next;
        
        return head;
    

以上是关于面试题 02.01. 移除重复节点的主要内容,如果未能解决你的问题,请参考以下文章

面试题 02.01. 移除重复节点

面试题 02.01. 移除重复节点

面试题 02.01. 移除重复节点

LeetCode 面试题 02.01. 移除重复节点

LeetCode每日一题2020.6.26 面试题 02.01. 移除重复节点

leetcode每日一题(2020-06-26):面试题 02.01. 移除重复节点