mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
2fadfa2cfb
e-mail addresses from the pkg-descr file that could reasonably be mistaken for maintainer contact information in order to avoid confusion on the part of users looking for support. As a pleasant side effect this also avoids confusion and/or frustration for people who are no longer maintaining those ports.
13 lines
708 B
Plaintext
13 lines
708 B
Plaintext
This module is a fully object oriented implementation of a binary tree. Binary
|
|
trees are a specialized type of tree which has only two possible branches, a
|
|
left branch and a right branch. While it is possible to use an n-ary tree, like
|
|
Tree::Simple, to fill most of your binary tree needs, a true binary tree object
|
|
is just easier to maintain and use.
|
|
|
|
Binary Tree objects are especially useful (to me anyway) when building parse
|
|
trees of things like mathematical or boolean expressions. They can also be used
|
|
in games for such things as decision trees. Binary trees are a well studied
|
|
data structure and there is a wealth of information on the web about them.
|
|
|
|
WWW: http://search.cpan.org/dist/Tree-Binary/
|