smirking teapot

“I’m not an expert, I’m just a dude.” -Scott Schurr, CppCon 2015.

Analysis of algorithms beyond the worst case

Posted at — Sep 10, 2023

The worst-case analysis gives a theoretical upper bound on the algorithmic performance. It’s important but, it has its limitations. So, there are other kinds of analyses to fill those gaps.

Outline

Average Case Analysis

algorithm-analysis-quadratic-nlogn

Probabilistic Analysis

algorithmic-analysis-probabilistic-analysis

Amortized Analysis

algorithmic-analysis-amortized-analysis

Real-Time Performance