|
|
|
|
|
by kyllo
4204 days ago
|
|
Just take the good ol' classical example of quicksort in Haskell or fibonacci in Lisp. Hell, recursive quicksort and mergesort are easier to teach and remember than the iterative versions even in C and Java. They're divide-and-conquer algorithms, which makes them a natural fit for a recursive solution. |
|
From cppreference.com: http://coliru.stacked-crooked.com/view?id=0b2cec4d8c69ffaf
http://en.cppreference.com/w/cpp/algorithm/partition