Tag: Algorithm
4 items found
Glossary Terms
Glossary
Binary Search
Binary search finds a target in sorted data by halving the range each step, aiming for O(log n) lookup time on sorted collections.
Glossary
Deque (Double-Ended Queue)
A deque is a double-ended queue that allows efficient insertion and removal at both the front and back of a collection.
Glossary
Hash Table
A hash table is a data structure that maps keys into buckets with a hash function for fast lookup, insert, and delete.
Glossary
Rate Limiting Strategies
Rate limiting strategies balance API request speed with fixed window, sliding window, leaky bucket, or token bucket algorithms.