21: Added path function to TreeNode (#22)

Path refers to the sequence of nodes along the edges of a tree.
This commit is contained in:
2023-02-22 14:29:22 +01:00
committed by GitHub
parent 8a4e677ebf
commit 4aacbc9dbc
10 changed files with 79 additions and 7 deletions

View File

@@ -0,0 +1,6 @@
package com.github.adriankuta.datastructure.tree.exceptions
import kotlin.jvm.JvmOverloads
class TreeNodeException @JvmOverloads constructor(message: String? = null, cause: Throwable? = null) :
RuntimeException(message, cause)