码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 203:Remove Linked List Elements

时间:2015-06-01 11:09:41      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

ListNode* removeElements(ListNode* head, int val)
{
    if (head == NULL)
        return head;
    
    ListNode *p = head;
    while (p && p->val==val)
    {
        p = p->next;
    }

    if (p)
    {
        ListNode *q=p;
        ListNode *temp = p->next;
        while (temp)
        {
            if (temp->val != val)
            {
                q->next = temp;
                q=q->next;
            }
            else
            {
                q->next = temp->next;
            }
            temp = temp->next;
        }
    }
    return p;
}

 

LeetCode 203:Remove Linked List Elements

标签:

原文地址:http://www.cnblogs.com/acode/p/4543435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!