No description
Find a file
Víctor Martínez 8710dff3aa
Update README.md
2020-12-07 02:48:07 +01:00
assets yay 2020-12-07 02:47:06 +01:00
src Binary Tree implemented, traversals implemented, tests done 2020-12-07 02:33:31 +01:00
tests Binary Tree implemented, traversals implemented, tests done 2020-12-07 02:33:31 +01:00
.gitignore first commit, project initialized 2020-12-05 20:37:52 +01:00
Cargo.toml first commit, project initialized 2020-12-05 20:37:52 +01:00
README.md Update README.md 2020-12-07 02:48:07 +01:00

Cool data structures

Doubly Linked List

A doubly linked list implemented with Rust, it use Reference counters and Reference cells together to let multiple nodes own a node and modify it

linked list

Sorted Binary Tree

A simple binary Tree which stores its elements in an ordered way. It implements the 3 most common traversals for binary trees: Inorder, postorder and preorder.

binary tree