Apr 01Python Data Structures Cheat SheetApr 017 min readA quick reference for Python data structures and their common operations, from lists and dicts to queues and stacks.
Oct 07Java Priority QueueOct 076 min readAn introduction to Java's PriorityQueue, its API, custom comparators, and the binary min-heap that powers it.
Jan 27Java HashtableJan 276 min readA hash table looks up data in O(1) time. This post walks through hash tables in the Java ecosystem: the data structure, the put process, and thread safety.