首页 > 代码库 > Remove Duplicates from Sorted List (链表)
Remove Duplicates from Sorted List (链表)
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
.
思路:两个指针,一个指向当前节点cur,一个指向下一个节点nx,终止条件,也就是比较了len-1次。
比较若不等,则两指针均后移,若相等则删除节点,且cur指针不变,nx指针后移。
代码:
class Solution {public: int getLength(ListNode *head){ int length=0; while(head){ ++length; head=head->next; } return length; } ListNode *deleteDuplicates(ListNode *head) { if(head==NULL) return NULL; int len=getLength(head); int i=1; ListNode* res=head; ListNode* cur=res; ListNode* nx=res->next; while(i<len){ if(cur->val==nx->val){ cur->next=cur->next->next; nx=nx->next; }else{ cur=cur->next; nx=nx->next; } ++i; } return res; }};
Remove Duplicates from Sorted List (链表)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。