summaryrefslogblamecommitdiff
path: root/docs/examples/sort1.scala
blob: 98f1370e65f4a1b4820e1dd42d5ca76ebca3f602 (plain) (tree)
1
2
3
4
5
6
7
8
                
 
              

                                       


                     



                                         



                                   

                                
                             

   
 
package examples

object sort1 {

  def sort(a: List[Int]): List[Int] = {
    if (a.length < 2)
      a
    else {
      val pivot = a(a.length / 2)
      sort(a.filter(x => x < pivot)) :::
           a.filter(x => x == pivot) :::
           sort(a.filter(x => x > pivot))
    }
  }

  def main(args: Array[String]) = {
    val xs = List(6, 2, 8, 5, 1)
    Console.println(xs)
    Console.println(sort(xs))
  }

}