Open
Conversation
knowledgaction
commented
Jul 18, 2023
- 函数传参,使用按引用传递,避免拷贝
- 两个shared指针的Node节点,其prev和next构成循环引用;改成一个unique_ptr和一个裸指针配合,裸指针要手动置为nullptr
- unique_ptr要与std::move()配合使用。使用move()函数后,其中的对象被释放,所以erase()函数中要先next,后prev。
- 设置两个指针,一边遍历other list,一边构造新的node并加到构造的list后面。这里用裸指针操作,方便一些。
- List b = a;执行的是拷贝构造函数。List b; b = a;才能执行拷贝赋值运算符。
- Node构造函数中,创建next和prev指针。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.