题目:
编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。
示例1:
输入:[1, 2, 3, 3, 2, 1]
输出:[1, 2, 3]
示例2:
输入:[1, 1, 1, 1, 2]
输出:[1, 2]
提示:
链表长度在[0, 20000]范围内。
链表元素在[0, 20000]范围内。
进阶:
如果不得使用临时缓冲区,该怎么解决?
思路一:
使用哈希表结构,由于要删除一个节点
所以必须有两个指针最好,容易记住
如果没有被添加,则指针右移 pos=pos.next;
如果被添加了,则断掉其连接的边即可 pos.next=pos.next.next
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode removeDuplicateNodes(ListNode head) {
if(head==null){
return head;
}
Set<Integer>set =new HashSet<>();
set.add(head.val);
ListNode pos=head;
while(pos.next!=null){
ListNode cur =pos.next;
if(set.add(cur.val)){
pos=pos.next;
}else{
pos.next=pos.next.next;
}
}
return head;
}
}
如果只使用一个指针
具体如下
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode removeDuplicateNodes(ListNode head) {
if(head==null){
return head;
}
Set<Integer>set =new HashSet<>();
set.add(head.val);
ListNode pos=head;
while(pos.next!=null){
if(set.add(pos.next.val)){
pos=pos.next;
}else{
pos.next=pos.next.next;
}
}
return head;
}
}
思路二:
不能用空间
那就换时间
但是复杂度有点高,不建议
class Solution {
public ListNode removeDuplicateNodes(ListNode head) {
ListNode ob = head;
while (ob != null) {
ListNode oc = ob;
while (oc.next != null) {
if (oc.next.val == ob.val) {
oc.next = oc.next.next;
} else {
oc = oc.next;
}
}
ob = ob.next;
}
return head;
}
}