-
-
Save Foat/41d48f3e477c05bb290b8dd94dd571ac to your computer and use it in GitHub Desktop.
Simple insertion into an ordered List
This file contains hidden or 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
val li=List(1,2,10,20,30) //> li : List[Int] = List(1, 2, 10, 20, 30) | |
def insert[T](li:List[T],x:T)(implicit cmp:Ordering[T])={ | |
val (first,last)=li.partition {cmp.lteq(_, x) } | |
first:::x::last | |
} //> insert: [T](li: List[T], x: T)(implicit cmp: Ordering[T])List[T] | |
insert(li,11) //> res0: List[Int] = List(1, 2, 10, 11, 20, 30) | |
insert(li,10) //> res1: List[Int] = List(1, 2, 10, 10, 20, 30) | |
insert(li,9) //> res2: List[Int] = List(1, 2, 9, 10, 20, 30) | |
insert(li,0) //> res3: List[Int] = List(0, 1, 2, 10, 20, 30) | |
insert(li,999) //> res4: List[Int] = List(1, 2, 10, 20, 30, 999) | |
insert(List('a','b','m','z'),'l') //> res5: List[Char] = List(a, b, l, m, z) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment