Revision as of 17:41, 5 May 2011 by Kumar43 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

'''Recursion'''

--Divide and Conquer

if(termination condition) { solve the problem }

else { break the problem into smaller parts and solve }


'''EX''' -- fibonacci

int fib(int n) { if( n == 0 | | n == 1) return 1;

return fib( n - 1 ) + ( n - 2 ); }


[['(**the format is not at basic coding standards due to the "Rhea" text editor)' ]]

Alumni Liaison

Sees the importance of signal filtering in medical imaging

Dhruv Lamba, BSEE2010