Functional alternative? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:41:01Zhttp://stackoverflow.com/feeds/question/318128http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318128/functional-alternative1Functional alternative?J Cooper2008-11-25T17:07:58Z2008-11-25T18:21:46Z
<p>Hi all,</p>
<p>As I continue my quest of learning functional programming, I've come
to wonder if there may be alternatives to my default "procedural" way
of thinking. To be more specific, I'm looking at a function I
wrote. Here is what it does:</p>
<pre><code>Swap two elements of an unordered list of numbers, such that one of the elements
is now in the right place
Add the sum of the swapped values to an accumulated total
Repeat until list is sorted
</code></pre>
<p>So, right now I'm using a standard loop* with an accum variable to do
the above. It works fine and all, and there's certainly nothing wrong
with iteration in real life, but as the point of this exercise is to
expand my way of thinking, I'm curious if there is a more functional
approach to the above algorithm. </p>
<p>Thanks!</p>
<p>*(Actually recursion, but whatever)</p>
http://stackoverflow.com/questions/318128/functional-alternative/318363#3183631Answer by Brian for Functional alternative?Brian2008-11-25T18:17:17Z2008-11-25T18:17:17Z<p>Recursion is basically a functional programming mechanism. I guess you could replace your swap function with a function that took in a list and returned a list or something similarly silly, but that would be a bad idea unless written in a language which was actually functional.</p>
<p>Try implementing mergesort in Oz, SML, Prolog, or Lisp. E.g. something like this pseudocode for merge:</p>
<pre><code>Merge(A,[])=A
Merge(H|T,H2|T2)=iif(H<H2,H|Merge(T,H2|T2),H2|Merge(H|T,T2)
</code></pre>
http://stackoverflow.com/questions/318128/functional-alternative/318377#3183771Answer by nlucaroni for Functional alternative?nlucaroni2008-11-25T18:21:47Z2008-11-25T18:21:47Z<blockquote>
<p>From <a href="http://eigenclass.org/hiki/fp-ocaml-koans" rel="nofollow">EigenClass</a>:</p>
<blockquote>
<p>The venerable master Leroy was walking with his student. Wishing to start a discussion with his master, the apprentice said "Master, I've heard that all loops must be replaced with tail-recursive functions. Is that true?" Leroy looked commiseratively at his student and replied "Foolish pupil, many tail-recursive functions are merely inefficient loops."</p>
<p>The student spent the next few weeks replacing tail-recursive functions with explicit loops. He finally showed his code to master Leroy, seeking his approval. Leroy hit him with a stick. "When will you learn? Explicit loops are a poor man's tail-recursive functions." At that moment, the student became enlightened.</p>
</blockquote>
</blockquote>
<p><em>Edit: Referring to Xavier Leroy, primary developer of OCaml</em></p>
<p>Since I can't <em>see</em> your function to understand how functional* it is, I don't know. But it seems like what you are doing is correct. My main suggestion would be looking at data structures that lend themselves well to functional programming --but you are using lists, so that's out, although, lists aren't the best data structure in this case. As well as the algorithm. If you are pigeon holed into using the insertion sort, then you might not be able to use merge sort or other more efficient methods.</p>