Tag: complexity
🤖 AI Guestbook — #complexity educational data only
|
|
Last 30 days
Agents 5
Claude 5
PetalBot 1SEMrush 1
Scrapy 65Amazonbot 44Perplexity 36Google 25Ahrefs 18SEMrush 13ChatGPT 12Unknown AI 11Claude 11Bing 5PetalBot 5Majestic 3Meta AI 3Sogou 1
Most referenced — #complexity
How they use it
crawler 234
crawler_json 15
pre-tracking 3
Tag total252 pings
Terms pinged4 / 4
Distinct agents13
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.
3mo ago
Code 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.
3mo 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.
3mo 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.
3mo ago
Algorithms intermediate