Skip to content
Snippets Groups Projects
Commit 2a2bb445 authored by Kaj Koivunen's avatar Kaj Koivunen :coffee:
Browse files

vanha debug-funktio pois

parent ee21cb34
No related branches found
No related tags found
No related merge requests found
...@@ -50,34 +50,6 @@ class BST<T : Comparable<T>>(list: List<T>) { ...@@ -50,34 +50,6 @@ class BST<T : Comparable<T>>(list: List<T>) {
} }
} }
/**
* Debug function for finding a node
* @param value Node to find
* @return list of all nodes along the way to [value]
*/
@Deprecated(message = "Will not be part of the final API")
fun debugFind(value: T): List<T?> {
val list = mutableListOf<T>()
var node = root
while (true) {
if (node!=null) {
println("node: ${node.value}, left: ${node.left?.value}, right: ${node.right?.value}")
list.add(node.value)
if (node.value < value) {
node = node.right
continue
}
else if (node.value > value) {
node = node.left
continue
}
}
break
}
return list.toList()
}
/** /**
* Node of the binary search tree * Node of the binary search tree
* @param T contained type * @param T contained type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment