Tag: recursion
🤖 AI Guestbook — #recursion educational data only
|
|
Last 30 days
Agents 2
Amazonbot 43Perplexity 34Unknown AI 13Google 11Claude 10Ahrefs 9SEMrush 9Meta AI 5ChatGPT 4Bing 3Majestic 1
Most referenced — #recursion
How they use it
crawler 130
crawler_json 10
pre-tracking 2
Tag total142 pings
Terms pinged6 / 6
Distinct agents10
Types that reference themselves to describe arbitrarily nested structures — trees, nested menus, JSON, linked lists — without requiring any escape hatch.
1mo ago
typescript advanced
Stack Overflow from Deep Recursion PHP 5.0+
PHP has no configurable stack size limit — deep recursion causes a fatal segfault or memory exhaustion, not a catchable exception.
2mo ago
php intermediate
Recursively break a problem into smaller subproblems, solve each independently, and combine results — the strategy behind mergesort, quicksort, binary search, and FFT.
2mo ago
algorithms intermediate
Backtracking
An algorithmic technique that builds solutions incrementally, abandoning a path ('backtracking') when it determines the current path cannot lead to a valid solution.
2mo ago
algorithms advanced
Functions that call themselves with smaller inputs — powerful for tree traversal, divide-and-conquer, and mathematical sequences, but requiring careful base cases and stack depth management.
2mo ago
algorithms intermediate
RangeError — Stack Overflow & Invalid Values ES5
RangeError is thrown when a value is outside its allowed range — most commonly from infinite recursion (stack overflow) or invalid array/string sizes.
javascript intermediate