I'm making my way through "Programming in Scala" and wrote a quick implementation of the selection sort algorithm. However, since I'm still a bit green in functional programming, I'm having trouble translating to a more Scala-ish style. For the Scala programmers out there, how can I do this using Lists and vals rather than falling back into my imperative ways?
|
|
|||||||||||||
|
|
|
As starblue already said, you need a function that calculates the minimum of a list and returns the list with that element removed. Here is my tail recursive implementation of something similar (as I believe
This basically does a fold, starting with a list containing of the first element of After creating this helper function, it's now easy to implement selection sort.
Unfortunately this implementation is not tail recursive, so it will blow up the stack for large lists. Anyway, you shouldn't use a O(n^2) sort for large lists, but still... it would be nice if the implementation was tail recursive. I'll try to think of something... I think it will look like the implementation of a fold. Tail Recursive! To make it tail recursive, I use quite a common pattern in functional programming - an accumulator. It works a bit backward, as now I need a function called
EDIT: Changed the answer to have the helper function as a subfunction of the selection sort function. It basically accumulates the maxima to a list, which it eventually returns as the base case. You can also see that it is tail recursive by replacing Here's a step by step sorting using an accumulator. The left hand side shows the list 64* 25 12 22 11 ------- Nil 11 22 12 25* ------- 64 22* 12 11 ------- 25 64 11 12* ------- 22 25 64 11* ------- 12 22 25 64 Nil ------- 11 12 22 25 64 The following shows a step by step folding to calculate the maximum: maximum(25 12 64 22 11) 25 :: Nil /: 12 64 22 11 -- 25 > 12, so it stays as head 25 :: 12 /: 64 22 11 -- same as above 64 :: 25 12 /: 22 11 -- 25Hope it helps :) -- Flaviu Cipcigan |
||||||||
|
|
|
You need a helper function which does the selection. It should return the minimal element and the rest of the list with the element removed. |
||
|
|
|
You may want to try replacing your while loops with recursion, so, you have two places where you can create new recursive functions. That would begin to get rid of some vars. This was probably the toughest lesson for me, trying to move more toward FP. I hesitate to show solutions here, as I think it would be better for you to try first. But, if possible you should be using tail-recursion, to avoid problems with stack overflows (if you are sorting a very, very large list). |
||
|
|
|
You should have problems doing selection sort in functional style, as it is an in-place sort algorithm. In-place, by definition, isn't functional. The main problem you'll face is that you can't swap elements. Here's why this is important. Suppose I have a list (a0 ... ax ... an), where ax is the minimum value. You need to get ax away, and then compose a list (a0 ... ax-1 ax+1 an). The problem is that you'll necessarily have to copy the elements a0 to ax-1, if you wish to remain purely functional. Other functional data structures, particularly trees, can have better performance than this, but the basic problem remains. |
||
|
|
|
|
I think it's reasonably feasible to do a selection sort in a functional style, but as Daniel indicated, it has a good chance of performing horribly. I just tried my hand at writing a functional bubble sort, as a slightly simpler and degenerate case of selection sort. Here's what I did, and this hints at what you could do:
Once that's finished recursing, the largest element is at the end of the list. Now,
When that's done, your data is indeed sorted. Yes, it's horrible, but my Clojure implementation of this pseudocode works. Just concerning yourself with the first element or two and then leaving the rest of the work to a recursed activity is a lisp-y, functional-y way to do this kind of thing. But once you've gotten your mind accustomed to that kind of thinking, there are more sensible approaches to the problem. I would recommend implementing a merge sort:
The recursion is in the middle of that, and I don't see a clever way of making the algorithm tail recursive. Still, I think it's O(log-2) in time and also doesn't place an exorbitant load on the stack. Have fun, good luck! |
||
|
|
