Rust: Doubly Linked List

No, this is not a post about how to implement doubly linked list in rust.

Or ir could be a very short post, since doubly linked list in built-in the std::collection as LinkedList

Following functions are available:

[Documentation](https://doc.rust-lang.org/std/collections/ struct.LinkedList.html) is easy to understand


  1. Since this is a Linked List, compute time is O(n) ↩︎