Why Your Linked List Wants to Be a Bloody Tree
Quick Answer: A linked list hits a wall when searching because it’s stuck in linear O(n) time. By giving every node two pointers instead of one, you create a Binary Search Tree (BST). This wacky struc
doogal.dev5 min read