[funds-cvs] r8 - trunk/funds/src/trees
abaine at common-lisp.net
abaine at common-lisp.net
Wed Jun 13 23:12:13 UTC 2007
Author: abaine
Date: Wed Jun 13 19:12:10 2007
New Revision: 8
Added:
trunk/funds/src/trees/package.lisp
Log:
funds-trees package
Added: trunk/funds/src/trees/package.lisp
==============================================================================
--- (empty file)
+++ trunk/funds/src/trees/package.lisp Wed Jun 13 19:12:10 2007
@@ -0,0 +1,16 @@
+
+(in-package :cl-user)
+
+(defpackage :funds-trees
+ (:use :cl)
+ (:export ; AVL Tree public interface
+ :empty-avl-tree
+ :avl-empty-p
+ :avl-insert
+ :avl-remove
+
+ :avl-key
+ :avl-value
+ :avl-height
+ :avl-left
+ :avl-right))
More information about the Funds-cvs
mailing list