码迷,mamicode.com
首页 > 其他好文 > 详细

scala快排

时间:2016-10-13 09:29:57      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

笔记积累,直接看代码吧,sublime上运行的

1   def quickSort(ls:List[Int]):List[Int]={
2       if(ls.isEmpty) ls
3       else quickSort(ls.tail.filter(_>=ls.head)):::ls.head::quickSort(ls.tail.filter(_<ls.head))
4   }
5 
6   println(quickSort(List(1,5,3,9,4,2,8,9)))

运行结果:

技术分享

 

scala快排

标签:

原文地址:http://www.cnblogs.com/sayhihi/p/5955103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!