Skip to content

Instantly share code, notes, and snippets.

@chalup
chalup / RedBlackTree.kt
Created August 30, 2018 10:29
Red-black tree implementation in Kotlin based on "Purely Functional Data Structures" book
sealed class RedBlackTree<E : Comparable<E>> {
enum class Color { R, B }
companion object {
fun <T : Comparable<T>> emptyTree(): RedBlackTree<T> = Empty as RedBlackTree<T>
}
object Empty : RedBlackTree<Nothing>()
data class Tree<E : Comparable<E>>(
val color: Color,