All Stories published by 100 days of algorithms on May 08, 2017

Day 45: Binary Search Tree

BST is another very interesting data structure. It allows for fast lookup, insertion and removal in expected O(log n) time. What’s even more important, BST keeps the data sorted and supports interval retrieval in time O(k+log n) for k items. That makes binary trees a key tool in…

About
100 days of algorithms
100 days, 100 algorithms - a challenge consisting of many small pieces
More information
Tags
Editors