Skip to content

Releases: Scalified/tree

Tree Data Structure Java Library ver. 0.2.0

22 Nov 10:22

Choose a tag to compare

  1. Changed main interfaces to classes
  2. Added LinkedMultiTreeNode - MultiTreeNode implementation based on the leftmost-child-right-sibling representation
  3. Added subtrees clearing logic and tests
  4. New find and findAll methods - allows to find nodes within the tree with the specified data

Tree Data Structure Java Library ver. 0.1.1

17 Sep 13:16

Choose a tag to compare

0.1.1

  1. Changed java major version to 51 (Java 1.7)
  2. Removed unnecessary util package

Tree Data Structure Java Library ver. 0.1.0

24 Aug 17:06

Choose a tag to compare

  1. Initial release. There is only one implementation of the K-ary (multi node) tree data structure,
    based on the resizable array