diff --git a/src/lib.rs b/src/lib.rs index b7f5e1b..dfc8679 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,11 @@ // Many of my decisions were based off the following document // https://web.archive.org/web/20140727185616/http://algs4.cs.princeton.edu/33balanced/ + +// TODO: +// Collection trait +// convert this to Key/Value K/V + use std::cmp::Ord; use std::option::{None, Option, Some}; @@ -243,8 +248,3 @@ impl TTTree { self.root = Some(new_root); } } - - -// TODO: -// Collection trait -// convert this to Key/Value K/V