From f6ce02b68f4fafa4b13e5bea055dbf1b3f1e09f2 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sat, 1 Nov 2014 13:17:20 -0400 Subject: [PATCH] Move TODO to the top --- src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 -- 2.51.2