c_cpp leetcode 83.注意第二个while循环,它可能导致null ListNode结构,因此需要进行NULL检查。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp leetcode 83.注意第二个while循环,它可能导致null ListNode结构,因此需要进行NULL检查。相关的知识,希望对你有一定的参考价值。

/**
 * 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 || head->next == NULL) {
            return head;
        }
        ListNode* node = head;
        while(node != NULL && node->next != NULL) {
            while (node->next != NULL && node->next->val == node->val) {
                ListNode* n = node->next;
                node->next = node->next->next;
                delete n;
            }
            node = node->next;
        }
        return head;
    }
};

以上是关于c_cpp leetcode 83.注意第二个while循环,它可能导致null ListNode结构,因此需要进行NULL检查。的主要内容,如果未能解决你的问题,请参考以下文章

连接第二个 insance 到 first_local_net - 每天5分钟玩转 OpenStack(83)

c_cpp 83.从排序列表中删除重复项

leetcode 移动零

[LeetCode] 83. Remove Duplicates from Sorted List

[LeetCode]Restore IP Addresses

leetcode-面试题22:链表中倒数第二个节点