Request:
- The question is two part. The first is conceptual, comparing functional and imperative programming from the perspective of cost of immutability. Second, about specifics of java/scala.
- Quicksort is taught and generally implemented as an in-memory sort. No arguments there. But, how does one implement such a thing in a PURE functional way. specifically in Scala.
Question:
Coming from a heavy imperative background (C++, java). I have been exploring functional programming, more specifically Scala. Though, I might be a funct nube, I thought it might be a good idea to ask this question here now.
Some of the concepts of functional programming ( I am sure I am missing out a lot )
- Functions as first class citizens.
- Functions do not have side effects and hence Immutable objects.
- Concurrency becomes easy as a result of 2)
Even though modern JVMs are extremely efficient with object creation and gc is very inexpensive for short lived objects, its probably still better to minimize object creation right?, at least in a single threaded application where concurrency and locking is not an issue. Since Scala is a hybrid, I know I can write imperative code with mutable objects if necessary. But, as someone who has spent a lot of years trying to reuse objects and minimize allocation. I would like a good understanding of the counter school of thought.
As a specific case, I was a little surprised by this code snippet in this tutorial by Ted Neward( seems like a prominent name in the Scala community ). It has a java version of Quicksort and then gives a neat looking Scala implementation of the same.
Here is my attempt to benchmark the implementations. I haven't done detailed profiling. But, my guess is that the Scala version is slower because the no of objects allocated is linear( one per recursion call). Is there any way chance, tail call optimizations come into play. If I am right, Scala supports tail call optimizations for self recursive calls. So, it should only be helping it. I am using Scala 2.8.
JAVA VERSION
public class QuickSortJ {
public static void sort(int[] xs) {
sort(xs, 0, xs.length -1 );
}
static void sort(int[] xs, int l, int r) {
int pivot = xs[(l+r)/2];
int a = l; int b = r;
while (a <= b){
while (xs[a] < pivot) { a = a + 1; }
while (xs[b] > pivot) { b = b - 1; }
if (a <= b) {
swap(xs, a, b);
a = a + 1;
b = b - 1;
}
}
if (l < b) sort(xs, l, b);
if (b < r) sort(xs, a, r);
}
static void swap(int[] arr, int i, int j) {
int t = arr[i]; arr[i] = arr[j]; arr[j] = t;
}
}
SCALA VERSION
object QuickSortS {
def sort(xs: Array[Int]): Array[Int] =
if (xs.length <= 1) xs
else {
val pivot = xs(xs.length / 2)
Array.concat(
sort(xs filter (pivot >)),
xs filter (pivot ==),
sort(xs filter (pivot <)))
}
}
Scala Code to compare implementations
import java.util.Date
import scala.testing.Benchmark
class BenchSort(sortfn: (Array[Int]) => Unit, name:String) extends Benchmark {
val ints = new Array[Int](100000);
override def prefix = name
override def setUp = {
val ran = new java.util.Random(5);
for (i <- 0 to ints.length - 1)
ints(i) = ran.nextInt();
}
override def run = sortfn(ints)
}
val benchImmut = new BenchSort( QuickSortS.sort , "Immutable/Functional/Scala" )
val benchMut = new BenchSort( QuickSortJ.sort , "Mutable/Imperative/Java " )
benchImmut.main( Array("5") )
benchMut.main( Array("5") )
RESULTS
Time in ms for 5 consecutive runs Immutable/Functional/Scala 467 178 184 187 183 Mutable/Imperative/Java 51 14 12 12 12
O(n)list concat. It's shorter than the pseudocode version though ;) – delnan Nov 4 '10 at 22:30