List

3 articles
tag: list 3 published articles
Java

List Utilities and Operations

Master the Collections utility class: sorting algorithms, binarySearch semantics, shuffle, and the difference between unmodifiable views and true immutability.

Collections UtilityJavaList+2 more
June 10, 2026
20 min
Java

LinkedList Deep Dive

Analyze LinkedList's doubly-linked structure, ~40 bytes per node overhead, O(n) random access limitations, and when LinkedList actually outperforms ArrayList.

DequeDoubly-linkedJava+2 more
June 10, 2026
23 min
Java

ArrayList Deep Dive

Deep dive into ArrayList internals: dynamic array backing, 1.5x growth strategy, capacity management, O(1) random access, and production patterns for pre-sizing.

ArraylistDynamic ArrayJava+2 more
June 10, 2026
22 min