Skip to content
Snippets Groups Projects
Commit d8e4551a authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Add isSorted/sorted to ListOps for Lists of ints

parent 3707aee0
No related branches found
No related tags found
No related merge requests found
......@@ -279,9 +279,31 @@ sealed abstract class List[T] {
@library
object ListOps {
def flatten[T](ls: List[List[T]]): List[T] = ls match {
case Cons(l, t) => l ++ flatten(t)
case Cons(h, t) => h ++ flatten(t)
case Nil() => Nil()
}
def isSorted(ls: List[Int]): Boolean = ls match {
case Nil() => true
case Cons(_, Nil()) => true
case Cons(h1, Cons(h2, _)) if(h1 > h2) => false
case Cons(_, t) => isSorted(t)
}
def sorted(ls: List[Int]): List[Int] = ls match {
case Cons(h, t) => insSort(sorted(t), h)
case Nil() => Nil()
}
def insSort(ls: List[Int], v: Int): List[Int] = ls match {
case Nil() => Cons(v, Nil())
case Cons(h, t) =>
if (v <= h) {
Cons(v, t)
} else {
Cons(h, insSort(t, v))
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment