Skip to content

louisstewart/AVLTreeRs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AVLTreeRs

This is an implementation of the AVL algorithm for self-balancing binary trees in Rust. It is an exercise in learning to use Rust, using dynamically allocated mem for on heap storage of nodes to create a recursive data structure.

Struct API

2 structs are created in this module, the generic data type structs of Tree and Node. The AVL tree struct stores the root Node and also presents the forward facing API for interacting with the data structure. The methods of the Node struct are private to Node.

  1. Creation

Tree is a generic data structure for all types that implement PartialEq + Ord traits. Instantiate a new tree using the Tree::new() constructor and cast to appropriate type.

let mut tree: Tree<i32> = Tree::new();

For instance, this is a new tree of 32bit ints.

  1. Insertion

After creation, insert items of whatever type the tree takes into the tree with insert(T). Method returns true if the insertion was successful.

tree.insert(4);
tree.insert(1);
tree.insert(2);
tree.insert(5);
// New root should be 2
if let Some(ref node) = tree.root {
    assert!(2, *node.get());
}
  1. Searching

Use the contains(T) method to search for a value in the tree. Will return true if the value is there - otherwise false. Since the tree is self-balancing, searching is an O(log n) operation.

let x: bool = tree.contains(5);
assert!(x); // Succeeds if 5 was inserted
  1. Deletion

The delete(T) method is used to remove values from the tree if they exist. If the tree is empty then the call returns false, otherwise it returns true, even if the value does not exist in the tree (may change in future).

// Assuming values above inserted
let x: bool = tree.delete(4); // true

About

Rust implementation of AVL tree.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages