We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
appendleft方法应该加入以下代码,否则新建链表先用appendleft再用append,会导致appendleft加入的节点丢失 if self.tailnode is None: self.tailnode = node
if self.tailnode is None: self.tailnode = node
The text was updated successfully, but these errors were encountered:
hi, 感谢指出。已经修复并增加了单测。 d23332b
Sorry, something went wrong.
No branches or pull requests
appendleft方法应该加入以下代码,否则新建链表先用appendleft再用append,会导致appendleft加入的节点丢失
if self.tailnode is None: self.tailnode = node
The text was updated successfully, but these errors were encountered: