Exercise 9.1.1 Provide an implementation of the missing function insert.
Insert will also be recursive, and its pretty easy to lay down the flow. Do not forget to concatenate the head after insert is applied on reduced versions of the list since we will need to return the whole inserted list and not a subset.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object ListSort { | |
def isort(xs: List[Int]): List[Int] = | |
if (xs.isEmpty) Nil | |
else insert(xs.head, isort(xs.tail)) | |
def insert(head: Int, xs: List[Int]): List[Int] = | |
if (xs.isEmpty) List(head) | |
else if (head > xs.head) xs.head :: insert(head, xs.tail) | |
else head :: xs | |
def main(args: Array[String]) { | |
val l = List(6,4,8,12,1,7,22,10) | |
println("List is: " + l) | |
println("Sorted List is: " + isort(l)) | |
} | |
} |
No comments:
Post a Comment