aboutsummaryrefslogtreecommitdiff
path: root/devel/avltree/pkg-descr
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-01-29 05:00:16 +0000
committerSteve Price <steve@FreeBSD.org>2000-01-29 05:00:16 +0000
commitc27477a5b486deaf8990f4dd0734973f5aa67987 (patch)
tree5245d8ccbb9c39c37cefd7a1ed258a4967cac78c /devel/avltree/pkg-descr
parent15cf33af7992a9a222c675b63ef6ec795a0ce965 (diff)
downloadports-c27477a5b486deaf8990f4dd0734973f5aa67987.tar.gz
ports-c27477a5b486deaf8990f4dd0734973f5aa67987.zip
Notes
Diffstat (limited to 'devel/avltree/pkg-descr')
-rw-r--r--devel/avltree/pkg-descr24
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/avltree/pkg-descr b/devel/avltree/pkg-descr
new file mode 100644
index 000000000000..3de9878d5d40
--- /dev/null
+++ b/devel/avltree/pkg-descr
@@ -0,0 +1,24 @@
+AVLtree is a small, malloc-based, in-memory index package generally
+like B-trees and hash tables.
+
+The interface resembles that of the BPLUS (B-tree) index package.
+
+Index creation options are:
+
+ - fixed-length binary keys OR variable-length string keys
+ - unique OR duplicate keys
+ - with duplicate keys:
+ standard (void *) pointers for each key OR
+ instance-counting (saves time and memory)
+
+Key insert/search time is O(log N). References:
+
+Adelson-Velskii, G. M., and E. M. Landis.
+ "An Algorithm for the Organization of Information."
+ Soviet Math. Doclady 3, 1962, pp. 1259-1263.
+Knuth, D. E.
+ The Art of Computer Programming, Volume 3: Sorting and Searching
+ (2nd printing). Addison-Wesley, 1975, pp. 451-468.
+
+AVLtree was written by Gregory Tseytin, tseyting@acm.org.
+Port-ified by Bill Ross, bross@nas.nasa.gov and ross@cgl.ucsf.edu.