首页 > 其他 > 详细

leetcode-203-Remove Linked List Elements

时间:2015-07-16 22:23:38      阅读:150      评论:0      收藏:0      [点我收藏+]

                                Remove Linked List Elements

Remove all elements from a linked list of integers that have value val

Example
Given: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6
Return: 1 --> 2 --> 3 --> 4 --> 5

Credits:
Special thanks to @mithmatt for adding this problem and creating all test cases.

删除所有值为val的节点


注意第一个节点和最后一个节点的处理

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* removeElements(ListNode* head, int val) {
        if (!head) return NULL;
        ListNode* pre,*h=head;
        while (h && h->val == val && h->next){  // 删除在前面所有值为val的节点
            h->val = h->next->val ;
            h->next = h->next->next ;
        }
        if (h->val == val) return NULL; //  此时 必定只有一个元素
        else {   // pre 为 h 前面的节点
            pre = h;
            h = h->next;
        }
        while (h) { // 删除值为val的节点
            if (h->val == val) {
                pre->next = h->next;
                h = h->next;
            }
            else {
                pre = h;
                h = h->next;
            }
        }
        return head; // 返回头结点
    }
};


在head前面加一个节点,便于处理,这样就可以不考虑首尾节点的处理过程。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* removeElements(ListNode* head, int val) {
        ListNode* newH;
        newH->next = head;
        ListNode* cur = newH;
        while (cur->next) {
            if (cur->next->val == val) {
                cur->next = cur->next->next;
            }
            else cur = cur->next; 
        }
        return newH->next;
    }
};




版权声明:本文为博主原创文章,未经博主允许不得转载。

leetcode-203-Remove Linked List Elements

原文:http://blog.csdn.net/u014705854/article/details/46916177

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!