P.01Bloom Filters: Fast "Definitely Not" Checks
A Bloom filter answers one question in almost no memory: is this definitely absent, or possibly present. How it works, and why false positives are a feature.
Tag
6 articles tagged #Algorithms.
P.01A Bloom filter answers one question in almost no memory: is this definitely absent, or possibly present. How it works, and why false positives are a feature.
P.02The algorithm choosing your elevator is the same family your kernel uses to schedule disk reads. How SCAN, LOOK, and destination dispatch actually work.
Understand decision tree algorithms for classification and regression, their pros and cons, and build an Iris classifier with Python code.
Understand the KNN algorithm — how it works, distance metrics, choosing K, and its applications in both classification and regression tasks.
Understand the divide and conquer algorithmic paradigm through the maximum subarray sum problem, with Python implementation and step-by-step analysis.
Master bitwise operations, bitmasking, bit manipulation tricks, and bit-based algorithms for competitive programming and software engineering interviews.