Update README.md

This commit is contained in:
Víctor Martínez 2020-12-07 02:40:57 +01:00 committed by GitHub
parent e5cb89ab0b
commit edb7a88593
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,15 @@
# Doubly Linked List
# Cool data structures
A doubly linked list implemented with Rust!
## Doubly Linked List
A doubly linked list implemented with Rust, it use [Reference counters](https://doc.rust-lang.org/stable/book/ch15-04-rc.html) and [Reference cells](https://doc.rust-lang.org/stable/book/ch15-05-interior-mutability.html) together to let multiple nodes own a node and modify it
![linked list](assets/doubly-list.png)
## Sorted Binary Tree
A simple binary Tree which stores its elements in an ordered way.
It has implemented the 3 most common traversals for binary trees: Inorder, postorder and preorder.
![binary tree](assets/binary-tree.png)