c++ - 双向链表 std::unique_ptr 类在删除节点时无法按预期工作

标签 c++ templates c++14 unique-ptr doubly-linked-list

灵感来自 Herb Sutter 在 CppCon2016 中的演讲,which can be found in this link.
我决定使用智能指针实现视频中所示的双向链表。
以下实现几乎与 remove() 方法中的一行代码分开工作。
我调试了这段代码,之前的节点在删除后没有更新为 null(作为头节点应该是)。
就好像智能指针之间的所有权转移是错误的。 下面是头文件和测试 main() 的代码:

LinkedList.h

#ifndef LINKEDLIST_H
#define LINKEDLIST_H

#include <iostream>
#include <memory>
#include <initializer_list>

namespace DLL {
    template <typename T> class LinkedList{
        private:
            struct ListNode{
                std::unique_ptr<ListNode> next; //2 uniq_ptr can't point to one another.
                ListNode* prev = nullptr; //weakptr needs to be cast back to a shared_ptr to check its state.
                T data{}; //Initialize empty;

            ListNode(const T& element){
                this->data = element;
            }
        };
    public:
        std::unique_ptr<ListNode> head;
        ListNode* tail = nullptr;

        LinkedList(){}
        ~LinkedList(){}

        void append(const T& element){
            ListNode* curr = nullptr;
            if (head.get() == nullptr){ //If list is empty.
                head = std::make_unique<ListNode>(element);
            }
            else if(head.get() -> next.get() == nullptr){ //If list has one element
                 head.get() -> next = std::make_unique<ListNode>(element);
                 curr = head.get() -> next.get(); //Sets raw pointer to the first element.
                 curr -> prev = head.get();
                 tail = curr;
            }
            else{
                tail -> next = std::make_unique<ListNode>(element);
                curr = tail -> next.get(); //Sets raw pointer to the last element.
                curr -> prev = tail;
                tail = curr;// The new last element is the tail.
            }
        }

        int remove(const T& element){
            ListNode* curr = nullptr;
            if (head.get() == nullptr){ //If list is empty.
                return -1; //Error: Can't remove from empty list.
            }
            //List has one or more elements.
            curr = head.get();
            while(curr != nullptr){
                if(curr -> data == element){ //Found element
                    if(curr -> prev == nullptr){ //is head
                    //head.reset(head.get()->next.get()); Doesn't work
                    //Line below doesn't work too
                    head = std::move(curr->next); //Head now points to the next element
                    //New head's previous element doesn't point to nothing, as it should.
                    }
                    else if(curr -> next.get() == nullptr){ //is tail
                        tail = curr -> prev; //Reference the previous element
                        tail -> next.release(); //Release the old tail element
                        if(head.get() == tail){
                            tail = nullptr; //tail and head should not be the same.
                        } //List contains one element
                    }
                    else{//is intermediate
                        //The next node should point to the previous one
                        curr -> next -> prev = curr -> prev;
                        curr -> prev -> next = std::move(curr -> next);
                        //The prev node now points to the next one of current.
                    }
                    return 1; //Element found in list
                }
                curr = curr -> next.get(); //Traverse the next element
            }
            return 0; //Element not found in list
        }

        void print() {
            ListNode* curr = head.get(); //Start from the start of the list.
            std::cout << "[ ";
            while (curr != nullptr) {
                std::cout << curr -> data << " ";
                curr = curr -> next.get();
            }
            std::cout << "]" << std::endl;
        }
    };
}

#endif

main.cpp

int main() { //Temporary Test Main will be split from the implementation file in the future
    DLL::LinkedList <int> list; //Empty list
    list.append(1);
    list.append(4);
    list.append(5);
    list.append(6);
    list.print();
    list.remove(5);
    list.remove(1); //When 1 is removed the 4 doesn't properly update as head, meaning the previous pointer of 4 is not null
    list.remove(4);
    list.remove(6);
    list.print();
    retunn 0;
}

对于这种问题,我很抱歉,我搜索了很多但找不到类似的东西。我调试了好几天,但无法修复所有权行。 我尝试包含最少量的代码,以重现错误如果 header 是一个长代码段,我很抱歉。

我用 g++ 编译:g++ -std=c++14 main.cpp -o out 和 VS2015 编译器。 make_unique 调用需要 C++14 标志

最佳答案

在检查迭代器的前一个指针是否为空的部分(基本上是检查头部),您有这一行:

head = std::move(curr->next);

将标题指针移动到元素的下一个指针。但是,您无法将新头指针的先前指针更新为空。所以该代码应该是这样的:

if(curr -> data == element){ //Found element
    if(curr -> prev == nullptr){ //is head
        head = std::move(curr->next); //Head now points to the next element
        if (head)
            head->prev = nullptr;
        else
            tail = nullptr;
    }
}

由于您正在成为新头指针的项目上使用 std::move(这是正确的),因此您基本上保持该节点中包含的数据相同。在这种情况下你需要明确 - std::unique_ptr 包装器对其拥有的对象的底层实现一无所知,因此它无法知道更新 prev 本例中的指针。

关于c++ - 双向链表 std::unique_ptr 类在删除节点时无法按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51563049/

相关文章:

C++1y 没有从 std::bind 到 std::function 的可行转换

c++ - 部署使用英特尔 Parallel Studio 的项目时出现问题

c++ - 返回指向本地 char 变量的字符串对象是否安全

c++ - C++ 中的三角矩阵和稀疏矩阵

c++ - 无法在 Windows Store App 中访问 USB 设备

c++ - 从列表/ map 自动生成条件表达式

python - Jinja2 - 使用 Set(分配)调用 customer_function

C++模板类问题

C++ 隐式数字类型降级

c++ - 桶排序和用户输入