原题连接:Leetcode 83. Remove Duplicates from Sorted List
Given the head of a sorted linked list, delete all duplicates such that each element appears only once. Return the linked list sorted as well.
Example 1:
Input: head = [1,1,2]
Output: [1,2]
Example 2:
Input: head = [1,1,2,3,3]
Output: [1,2,3]
Constraints:
因为题目中明确了,链表是已经排序的。
因此,重复元素一定是相邻的。
遍历一次链表,将相邻元素删除即可
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* deleteDuplicates(ListNode* head) {
if(!head || head->next == NULL)
return head;
ListNode* cur = head;
while(cur->next != NULL){
// cur重复的话就将cur删除
if(cur->next->val == cur->val){
cur->next = cur->next->next;
}
// 往后移动一位
else
cur = cur->next;
}
return head;
}
};