题解 | #删除有序链表中重复的元素-I#

删除有序链表中重复的元素-I

http://www.nowcoder.com/practice/c087914fae584da886a0091e877f2c79

 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 * };
 */

class Solution {
public:
    /**
     * 
     * @param head ListNode类 
     * @return ListNode类
     */
    typedef struct ListNode* Node;
    ListNode* deleteDuplicates(ListNode* head) {
        if(!head) return head;
        Node virnode=new ListNode(-1);
        virnode->next=head;
        Node pre=head;
        Node cur=head->next;
        while(cur)
        {
            if(cur->val==pre->val)
            {
                cur=cur->next;
                pre->next=cur;
            }
            else
            {
                cur=cur->next;
                pre=pre->next;
            }
        }
        return virnode->next;
    }
};
全部评论

相关推荐

点赞 评论 收藏
分享
拒绝无效加班的小师弟很中意你:求职意向没有,年龄、课程冗余信息可以删掉,需要提升项目经历。排版需要修改。
点赞 评论 收藏
分享
评论
3
收藏
分享
牛客网
牛客企业服务