Day 21: Binary Search Trees
Today I went over binary search trees. I found it interesting how binary search trees are more efficient with O(logn) runtime for inserting and deleting whereas using an array instead would be O(n) runtime for the same operations. For both sorted arr...
dailydsa.com1 min read