With the intention of learning and further to this question, I've remained curious of the idiomatic alternatives to explicit recursion for an algorithm that checks whether a list (or collection) is ordered. (I'm keeping things simple here by using an operator to compare and Int as type; I'd like to look at the algorithm before delving into the generics of it)
The basic recursive version would be (by @Luigi Plinge):
def isOrdered(l:List[Int]): Boolean = l match {
case Nil => true
case x :: Nil => true
case x :: xs => x <= xs.head && isOrdered(xs)
}
A poor performing idiomatic way would be:
def isOrdered(l: List[Int]) = l == l.sorted
An alternative algorithm using fold:
def isOrdered(l: List[Int]) =
l.foldLeft((true, None:Option[Int]))((x,y) =>
(x._1 && x._2.map(_ <= y).getOrElse(true), Some(y)))._1
It has the drawback that it will compare for all n elements of the list even if it could stop earlier after finding the first out-of-order element. Is there a way to "stop" fold and therefore making this a better solution?
Any other (elegant) alternatives?
ifstatements makes me sad, and Luigi's version was slightly off (detecting reverse order). Fixed it for you. – Apocalisp Oct 22 '11 at 8:14isOrdered(List(1,2,1,2)), which is why I rolled it back, and is why I'm changing it back again... – Luigi Plinge Oct 22 '11 at 9:52l == l.sortedmight not work for lists of objects other than ints if the sorting algorithm used isn't stable. – Kim Stebel Jul 3 '12 at 14:31