Skip to content

joaovicenteft/trees

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Trees - Data Structures

Tree is made up with nodes or vertices. It is a generalization of a graph.

BST tree

BST tree is the most basic data structure that uses double recursion, a case of divide and conquer. With the increase of data the tree will be unefficient, to correct this is propose the AVL tree.

cd trees/BSTtree
make

AVL tree

AVL tree is a binary search tree with a balanced factor, which avoid the tree having much childrens in a single branch. Uses rotations to balance the tree.

cd trees/AVLtree
make

About

a type of data structure called tree

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published