Given a sorted linked list, delete all duplicates such that each element appear only once. java
For example,
Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.
node
下面是個人解決方案,考慮測試用例:
1,1
1,1,1
1,2,2python
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */
class Solution {
public:
ListNode* deleteDuplicates(ListNode* head)
{
if(head==NULL)return head;
ListNode* pre = head;
ListNode* cur = head->next;
while(cur!=NULL)
{
if(cur->val==pre->val)
{
pre->next = pre->next->next;
cur = cur->next;
if(cur==NULL)return head;
//free(cur)沒有free是不對的,可能引發內存泄漏;
}
else if(cur->val!=pre->val)
{
pre = pre->next;
cur = cur->next;
}
}
return head;
}
};
c++:c++
public class Solution {
public ListNode deleteDuplicates(ListNode head) {
if (head == null) return head;
ListNode cur = head;
while(cur.next != null) {
if (cur.val == cur.next.val) {
cur.next = cur.next.next;
}
else cur = cur.next;
}
return head;
}
}
c語言:markdown
struct ListNode* deleteDuplicates(struct ListNode* head)
{
if (head) {
struct ListNode *p = head;
while (p->next) {
if (p->val != p->next->val) {
p = p->next;
}
else {
struct ListNode *tmp = p->next;
p->next = p->next->next;
free(tmp);//這塊在實際代碼中,很是有必要
}
}
}
return head;
}
簡潔的python解決方案:app
class Solution:
# @param head, a ListNode
# @return a ListNode
def deleteDuplicates(self, head):
node = head
while node:
while node.next and node.next.val == node.val:
node.next = node.next.next
node = node.next
return head