GitXplorerGitXplorer
t

Tree

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Verified
9f65e6d2ba23de99862b35e2476914f94f0a0efc

Update README.md

ttbrowder committed 5 years ago
Verified
f91d249e0ab5597545c3023ce9e0b7c222fa0858

Update README.md

ttbrowder committed 5 years ago
Verified
06486356ca50da7de4f2a722dc3d21c5a16bd864

Initial commit

ttbrowder committed 5 years ago

README

The README file for this repository.

Tree

Raku implementation of variants of the Binary Tree, e.g., BST, AVL, Red-Black, and M-Ary

Synopsis

use Tree::AVL; # default: unique keys, i.e., a set

my $tree = Tree::AVL.new;
$tree.insert: 1, :data<some text>;
# check for success
say $tree.result; # output: True
$tree.insert: 1;
say $tree.result; # output: False
...

Implementation status

  1. BST - Work in progress (WIP)
  2. AVL - WIP
  3. Red-Black - Planned
  4. M-Ary - Planned

References

  1. Introduction to Algorithms, Third Edition; by ...

Copyright

Copyright (c) 2009, Thomas Browder tom.browder@gmail.com

LICENSE

Artistic-2.0