Expand description
Link List implemented with Rust, which is similar to the kernel queue of the mos / Linux
The LinkList is a simple-linked-list, while the TailLinkList is a
tail-linked-list.
The linking-filed in LinkNode struct contains two raw pointers:
next: pointing to the next LinkNodeprev: pointing to the previous LinkNode’snextfield
Structs§
- The head struct of the LinkList
- The node struct of the LinkList