This website works better with JavaScript.
Explore
Help
Register
Sign In
rust
/
rust-course
mirror of
https://github.com/sunface/rust-course
Watch
5
Star
0
Fork
You've already forked rust-course
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
f6f91403a8
main
gh-pages
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'f6f91403a8'
${ noResults }
rust-course
/
src
/
too-many-lists
/
advanced-lists
/
intro.md
412 B
Raw
Blame
History
使用高级技巧实现链表
说句实话,我们之前实现的链表都达不到生产级可用的程度,而且也没有用到一些比较时髦的技巧。
本章我们一起来看一些更时髦的链表实现:
生产级可用的双向链表
双重单向链表
栈分配的链表
自引用和Arena分配器实现( 原文作者还未实现,所以... Todo )
GhostCell 实现( 同上 )