Skip to main content

6 docs tagged with "queue"

View all tags

Collections and Streams in Java

Java Collections Framework & Stream API complete reference — ArrayList, HashMap, PriorityQueue, TreeMap, and all Stream operations with code examples for beginners and DSA prep.

Monotonic Stack & Queue

A comprehensive guide to Monotonic Stack and Monotonic Queue patterns with visual diagrams, step-by-step dry-runs, code templates in Python, Java, and C++, and practice problems.

Sliding Window Maximum

Given array of integers nums , with sliding window of size k which is moving from the very left of the array to the very right.Return the max for each sliding window.