forked from igorwojda/kotlin-coding-challenges
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsolution.kt
49 lines (42 loc) · 1.27 KB
/
solution.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.igorwojda.binarytree.validate
private object Solution1 {
private fun isValidSearchBinaryTree(node: Node<Int>, min: Int? = null, max: Int? = null): Boolean {
if (min != null && node.data < min) {
return false
}
if (max != null && node.data > max) {
return false
}
val leftNode = node.left
if (leftNode != null) {
return isValidSearchBinaryTree(leftNode, min, node.data)
}
val rightNode = node.right
if (rightNode != null) {
return isValidSearchBinaryTree(rightNode, node.data, max)
}
return true
}
private data class Node<E : Comparable<E>>(
var data: E,
var left: Node<E>? = null,
var right: Node<E>? = null
) {
fun insert(e: E) {
if (e < data) { // left node
if (left == null) {
left = Node(e)
} else {
left?.insert(e)
}
} else if (e > data) { // right node
if (right == null) {
right = Node(e)
} else {
right?.insert(e)
}
}
}
}
}
private object KtLintWillNotComplain