Releases: Scalified/tree
Releases · Scalified/tree
Tree Data Structure Java Library ver. 0.2.0
- Changed main interfaces to classes
- Added LinkedMultiTreeNode - MultiTreeNode implementation based on the leftmost-child-right-sibling representation
- Added subtrees clearing logic and tests
- 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
0.1.1
- Changed java major version to 51 (Java 1.7)
- Removed unnecessary util package
Tree Data Structure Java Library ver. 0.1.0
- Initial release. There is only one implementation of the K-ary (multi node) tree data structure,
based on the resizable array