Name: Anonymous 2012-11-12 16:01
If a recursive algorithm calls itself twice for each element in a set, does that mean it has n^2 complexity, or is that 2n and therefore n complexity? I am confused.
for (i in set) { for (j in set) { do a thing } }, but that's not recursive.