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
你好, 对于链表remove时间复杂度有些疑问 我认为无论是单链表、双链表,删除一个元素的时间复杂度都是O(n),因为都需要遍历整个链表; 删除一个node时间复杂度都是O(1),因为都只需要将前后两个node相连, 为什么lru_cache 不用单链表要用双链表呢?
The text was updated successfully, but these errors were encountered:
对于单链表或者双链表,这里如果需要查找节点的话删除的复杂度都是 O(n)的,因为你只能从头到尾顺序查找。但是对于双链表,如果已经知道了一个节点的情况下,你就可以直接通过连接该节点前后节点的方式使用O(1)的方式删除该节点了。在 lru_cache里,你要删除一个节点的时候是知道这个节点值的,所以可以直接用O(1)的时间删除,并不需要从头到位查找这个节点。
Sorry, something went wrong.
No branches or pull requests
你好,
对于链表remove时间复杂度有些疑问
我认为无论是单链表、双链表,删除一个元素的时间复杂度都是O(n),因为都需要遍历整个链表;
删除一个node时间复杂度都是O(1),因为都只需要将前后两个node相连,
为什么lru_cache 不用单链表要用双链表呢?
The text was updated successfully, but these errors were encountered: