筛选链表(c++实现)

发布时间:2024年01月07日
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
    bool st[10010];
public:
    ListNode* filterList(ListNode* head) {
        st[abs(head->val)] = true;
        for(auto p = head;p->next;){
            auto n = p->next;
            if(st[abs(n->val)]){
                p->next = n->next;
                delete n;
            }else{
                st[abs(n->val)] = true;
                p = p->next;
            }
        }
        return head;
    }
};

文章来源:https://blog.csdn.net/zyang654321/article/details/135438590
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。