Merge branch 'master' of github.com:froydnj/trees
[trees.git] / load.lisp
1 (load "package")
2 (load "generics")
3 (load "types")
4 (load "binary-trees")
5 (load "print")
6 (load "red-black-trees")
7 (load "avl-trees")
8 (load "aa-trees")
9 (load "utils")
10
11 (defvar x (bt:make-binary-tree :red-black :compfun #'< :eqfun #'= :keyfun #'identity))
12 (dotimes (i 100)
13   (bt:insert x i))
14
15 (bt::do-tree-range (i x)
16   (print i))