Tag: complexity
🤖 AI Guestbook — #complexity educational data only
|
|
Last 30 days
Agents 5
Amazonbot 2Perplexity 1
Perplexity 1Amazonbot 1
Amazonbot 41Perplexity 33Google 15Unknown AI 11Ahrefs 10Claude 6SEMrush 4Majestic 3ChatGPT 2Bing 1
Most referenced — #complexity
How they use it
crawler 116
crawler_json 7
pre-tracking 3
Tag total126 pings
Terms pinged4 / 4
Distinct agents9
Reducing Cyclomatic Complexity Techniques
Cyclomatic complexity counts independent code paths — reduce it by early returns, extracting conditions to named functions, using lookup tables, and replacing switch/if chains with polymorphism.
2mo ago
quality intermediate
Amortized Analysis
Averaging the cost of an operation over a sequence — explaining why dynamic array append is O(1) amortised despite occasional O(n) resizes.
2mo ago
algorithms advanced
P vs NP & NP-Completeness
P problems are solvable in polynomial time; NP problems have solutions verifiable in polynomial time. NP-complete problems are the hardest in NP — no polynomial-time algorithm is known.
2mo ago
algorithms advanced
A mathematical notation describing how an algorithm's time or space requirements grow relative to input size, ignoring constants and lower-order terms.
2mo ago
algorithms intermediate