Skip to content

Releases: AdrianKuta/Tree-Data-Structure

v3.0.2

24 Jul 17:04
04c3728
Compare
Choose a tag to compare

What's Changed

  • 24: Add iterator param to TreeNode's constructor. by @AdrianKuta in #25

Full Changelog: v3.0.1...v3.0.2

v3.0.1

22 Feb 13:35
d34050e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0...v3.0.1

v3.0

16 Dec 21:26
84e85f3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.0...v3.0

v2.1.0

24 Nov 22:08
72c94f2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.3...v2.1.0

v2.0.3

03 Sep 11:35
Compare
Choose a tag to compare
Iterator class refactor

v2.0.2

03 Sep 10:46
Compare
Choose a tag to compare
Set up GitHub Actions

v2.0.1

03 Sep 10:18
Compare
Choose a tag to compare
fixed github actions

v2.0.0

03 Sep 09:55
224e4d8
Compare
Choose a tag to compare

Upgraded build gradle to 7.0.2.
Configured GitHub Actions

v1.2.2

21 Jan 14:13
Compare
Choose a tag to compare

Fixed tree initialization in Kotlin.
Now this code creates proper tree:

val rootExt = tree("World") {
            child("North America") {
                child("USA")
            }
            child("Europe") {
                child("Poland")
                child("France")
            }
        }

v1.2.1

21 Jan 11:54
Compare
Choose a tag to compare

Extracted tree printing method from toString() method to new method prettyString()