A binary search tree in Kotlin pt. 1: Representing a node
Posted by Simon Larsén in Programming
In my journey to become a somewhat competent Kotlin developer, I've decided to implement a few of the basic data structures that I've picked up during my three years of computer science studies. First up, we have a generic binary tree. This is an interesting case, because it lets us …