码迷,mamicode.com
首页 > 编程语言 > 详细

遍历数组提取List[Int]

时间:2017-09-24 20:29:44      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:img   flat   logs   col   style   com   ges   .com   遍历   

 1 def toFlatMap(input:List[Any],result:List[Int]):List[Int]=input match{
 2   case h::t=>h match {case e:Int=>toFlatMap(t,e::result)
 3                       case  x:List[Any] => toFlatMap(t,toFlatMap(x,result))
 4                       case _=>toFlatMap(t,result)}
 5   case Nil=>result
 6   case _=> result
 7 }
 8 
 9 val myList=List("a",List("a,",1000,2000),11,2,3,4,"abc",5,List(6,List(100,200),2,1).reverse,"a")10 
11 print(toFlatMap(myList,List[Int]()).reverse)

 

技术分享

 

遍历数组提取List[Int]

标签:img   flat   logs   col   style   com   ges   .com   遍历   

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

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