mirror of https://github.com/sunface/rust-course
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.
6 lines
592 B
6 lines
592 B
3 years ago
|
# 生产级可用的双向链表
|
||
|
打开[原文](https://rust-unofficial.github.io/too-many-lists/sixth.html),发现这一篇只有两行,我以为自己看花了眼,揉了揉眼,定睛一看,还是两行。
|
||
|
|
||
|
没错,貌似作者想要偷懒,而且为了掩饰,他还提供了标准库的实现:) 如果大家想要学习,看[标准库](https://github.com/rust-lang/rust/blob/master/library/alloc/src/collections/linked_list.rs)吧 :D
|
||
|
|
||
|
> 为了能更好的看懂标准库实现,你可能还需要这本书的辅助: [Rustonomicon](https://doc.rust-lang.org/nightly/nomicon/)
|