Top "Recursion" questions

Recursion is a kind of function call in which a function calls itself.

What's the difference between recursion, memoization & dynamic programming?

Possible Duplicate: Dynamic programming and memoization: top-down vs bottom-up approaches I have gone through a lot of articles on this …

algorithm recursion dynamic-programming memoization
What is the Python way for recursively setting file permissions?

What's the "python way" to recursively set the owner and group to files in a directory? I could just pass …

python recursion chown
Fast Fibonacci recursion

I'm trying to recall an algorithm on Fibonacci recursion. The following: public int fibonacci(int n) { if(n == 0) return 0; else …

algorithm recursion fibonacci
How do I make this loop all children recursively?

I have the following: for (var i = 0; i < children.length; i++){ if(hasClass(children[i], "lbExclude")){ children[i].parentNode.…

javascript recursion loops for-loop children
Solving the recurrence relation T(n) = √n T(√n) + n

Is it possible to solve the recurrence relation T(n) = √n T(√n) + n Using the Master Theorem? It is …

math recursion complexity-theory big-o recurrence
Check for repeated characters in a string Javascript

I was wondering if there is a way to check for repeated characters in a string without using double loop. …

javascript recursion repeat
The difference between head & tail recursion

I'm trying to get the difference between these 2 recursive strategies. The definition I was told is the following: Tail Recursion: …

java recursion difference
Get recursive group membership of all AD users using Powershell

I'm trying to make a PS script which would list all Active Directory user group membership (recursive). I already have …

powershell recursion membership active-directory-group
pyinstaller creating EXE RuntimeError: maximum recursion depth exceeded while calling a Python object

I am running WinPython 3.4.4.3 with pyinstaller 3.2 (obtained via pip install pyinstaller). Now I've got some really simple Qt4 code that …

python recursion scipy exe pyinstaller
PHP - Listing all directories and sub-directories recursively in drop down menu

Possible Duplicate: PHP Get all subdirectories of a given directory I want a drop down menu to show all sub-directories …

php drop-down-menu recursion directory subdirectory