Given a sorted linked list, delete all duplicates such that each element appear only once.
For example,
Given 1->1->2
, return 1->2
.
Given 1->1->2->3->3
, return 1->2->3
.
链表去重,比上一题简单很多,两个指针就够了
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
public class Solution {
public ListNode deleteDuplicates(ListNode head) {
if(head==null||head.next==null)return head;
ListNode pre = new ListNode(0);
ListNode fhead = pre;
pre.next = head;
ListNode cur = head;
while(cur.next!=null){
if(cur.val==cur.next.val){
cur.next = cur.next.next;
}
else{
pre = cur;
cur = cur.next;
}
}
return fhead.next;
}
}