Scala List(列表)

Scala 集合 Scala 集合

Scala 列表類(lèi)似于數(shù)組,它們所有元素的類(lèi)型都相同,但是它們也有所不同:列表是不可變的,值一旦被定義了就不能改變,其次列表 具有遞歸的結(jié)構(gòu)(也就是鏈接表結(jié)構(gòu))而數(shù)組不是。。

列表的元素類(lèi)型 T 可以寫(xiě)成 List[T]。例如,以下列出了多種類(lèi)型的列表:

// 字符串列表
val site: List[String] = List("W3CSchool", "Google", "Baidu")

// 整型列表
val nums: List[Int] = List(1, 2, 3, 4)

// 空列表
val empty: List[Nothing] = List()

// 二維列表
val dim: List[List[Int]] =
   List(
      List(1, 0, 0),
      List(0, 1, 0),
      List(0, 0, 1)
   )

構(gòu)造列表的兩個(gè)基本單位是 Nil::

Nil 也可以表示為一個(gè)空列表。

以上實(shí)例我們可以寫(xiě)成如下所示:

// 字符串列表
val site = "W3CSchool" :: ("Google" :: ("Baidu" :: Nil))

// 整型列表
val nums = 1 :: (2 :: (3 :: (4 :: Nil)))

// 空列表
val empty = Nil

// 二維列表
val dim = (1 :: (0 :: (0 :: Nil))) ::
          (0 :: (1 :: (0 :: Nil))) ::
          (0 :: (0 :: (1 :: Nil))) :: Nil

列表基本操作

Scala列表有三個(gè)基本操作:

  • head 返回列表第一個(gè)元素
  • tail 返回一個(gè)列表,包含除了第一元素之外的其他元素
  • isEmpty 在列表為空時(shí)返回true

對(duì)于Scala列表的任何操作都可以使用這三個(gè)基本操作來(lái)表達(dá)。實(shí)例如下:

object Test {
   def main(args: Array[String]) {
      val site = "W3CSchool" :: ("Google" :: ("Baidu" :: Nil))
      val nums = Nil

      println( "第一網(wǎng)站是 : " + site.head )
      println( "最后一個(gè)網(wǎng)站是 : " + site.tail )
      println( "查看列表 site 是否為空 : " + site.isEmpty )
      println( "查看 nums 是否為空 : " + nums.isEmpty )
   }
}

執(zhí)行以上代碼,輸出結(jié)果為:

$ vim Test.scala 
$ scala Test.scala 
第一網(wǎng)站是 : W3CSchool
最后一個(gè)網(wǎng)站是 : List(Google, Baidu)
查看列表 site 是否為空 : false
查看 nums 是否為空 : true

連接列表

你可以使用 ::: 運(yùn)算符或 List.:::() 方法或 List.concat() 方法來(lái)連接兩個(gè)或多個(gè)列表。實(shí)例如下:

object Test {
   def main(args: Array[String]) {
      val site1 = "W3CSchool" :: ("Google" :: ("Baidu" :: Nil))
      val site2 = "Facebook" :: ("Taobao" :: Nil)

      // 使用 ::: 運(yùn)算符
      var fruit = site1 ::: site2
      println( "site1 ::: site2 : " + fruit )
      
      // 使用 Set.:::() 方法
      fruit = site1.:::(site2)
      println( "site1.:::(site2) : " + fruit )

      // 使用 concat 方法
      fruit = List.concat(site1, site2)
      println( "List.concat(site1, site2) : " + fruit  )
      

   }
}

執(zhí)行以上代碼,輸出結(jié)果為:

$ vim Test.scala 
$ scala Test.scala 
site1 ::: site2 : List(W3CSchool, Google, Baidu, Facebook, Taobao)
site1.:::(site2) : List(Facebook, Taobao, W3CSchool, Google, Baidu)
List.concat(site1, site2) : List(W3CSchool, Google, Baidu, Facebook, Taobao)

List.fill()

我們可以使用 List.fill() 方法來(lái)創(chuàng)建一個(gè)指定重復(fù)數(shù)量的元素列表:

object Test {
   def main(args: Array[String]) {
      val site = List.fill(3)("W3CSchool") // 重復(fù) W3CSchool 3次
      println( "site : " + site  )

      val num = List.fill(10)(2)         // 重復(fù)元素 2, 10 次
      println( "num : " + num  )
   }
}

執(zhí)行以上代碼,輸出結(jié)果為:

$ vim Test.scala 
$ scala Test.scala 
site : List(W3CSchool, W3CSchool, W3CSchool)
num : List(2, 2, 2, 2, 2, 2, 2, 2, 2, 2)

List.tabulate()

List.tabulate() 方法是通過(guò)給定的函數(shù)來(lái)創(chuàng)建列表。

方法的第一個(gè)參數(shù)為元素的數(shù)量,可以是二維的,第二個(gè)參數(shù)為指定的函數(shù),我們通過(guò)指定的函數(shù)計(jì)算結(jié)果并返回值插入到列表中,起始值為 0,實(shí)例如下:

object Test {
   def main(args: Array[String]) {
      // 通過(guò)給定的函數(shù)創(chuàng)建 5 個(gè)元素
      val squares = List.tabulate(6)(n => n * n)
      println( "一維 : " + squares  )

      // 創(chuàng)建二維列表
      val mul = List.tabulate( 4,5 )( _ * _ )      
      println( "多維 : " + mul  )
   }
}

執(zhí)行以上代碼,輸出結(jié)果為:

$ vim Test.scala 
$ scala Test.scala 
一維 : List(0, 1, 4, 9, 16, 25)
多維 : List(List(0, 0, 0, 0, 0), List(0, 1, 2, 3, 4), List(0, 2, 4, 6, 8), List(0, 3, 6, 9, 12))

List.reverse

List.reverse 用于將列表的順序反轉(zhuǎn),實(shí)例如下:

object Test {
   def main(args: Array[String]) {
      val site = "W3CSchool" :: ("Google" :: ("Baidu" :: Nil))
      println( "site 反轉(zhuǎn)前 : " + site )

      println( "site 反轉(zhuǎn)前 : " + site.reverse )
   }
}

執(zhí)行以上代碼,輸出結(jié)果為:

$ vim Test.scala 
$ scala Test.scala 
site 反轉(zhuǎn)前 : List(W3CSchool, Google, Baidu)
site 反轉(zhuǎn)前 : List(Baidu, Google, W3CSchool)

Scala List 常用方法

下表列出了 Scala List 常用的方法:

序號(hào) 方法及描述
1

def +(elem: A): List[A]

為列表預(yù)添加元素

2

def ::(x: A): List[A]

在列表開(kāi)頭添加元素

3

def :::(prefix: List[A]): List[A]

在列表開(kāi)頭添加指定列表的元素

4

def ::(x: A): List[A]

在列表開(kāi)頭添加元素 x

5

def addString(b: StringBuilder): StringBuilder

將列表的所有元素添加到 StringBuilder

6

def addString(b: StringBuilder, sep: String): StringBuilder

將列表的所有元素添加到 StringBuilder,并指定分隔符

7

def apply(n: Int): A

通過(guò)列表索引獲取元素

8

def contains(elem: Any): Boolean

檢測(cè)列表中是否包含指定的元素

9

def copyToArray(xs: Array[A], start: Int, len: Int): Unit

將列表的元素復(fù)制到數(shù)組中。

10

def distinct: List[A]

去除列表的重復(fù)元素,并返回新列表

11

def drop(n: Int): List[A]

丟棄前n個(gè)元素,并返回新列表

12

def dropRight(n: Int): List[A]

丟棄最后n個(gè)元素,并返回新列表

13

def dropWhile(p: (A) => Boolean): List[A]

從左向右丟棄元素,直到條件p不成立

14

def endsWith[B](that: Seq[B]): Boolean

檢測(cè)列表是否以指定序列結(jié)尾

15

def equals(that: Any): Boolean

判斷是否相等

16

def exists(p: (A) => Boolean): Boolean

判斷列表中指定條件的元素是否存在。

判斷l(xiāng)是否存在某個(gè)元素:

scala> l.exists(s => s == "Hah")
res7: Boolean = true
17

def filter(p: (A) => Boolean): List[A]

輸出符號(hào)指定條件的所有元素。

過(guò)濾出長(zhǎng)度為3的元素:

scala> l.filter(s => s.length == 3)
res8: List[String] = List(Hah, WOW)
18

def forall(p: (A) => Boolean): Boolean

檢測(cè)所有元素。

例如:判斷所有元素是否以"H"開(kāi)頭:

scala> l.forall(s => s.startsWith("H")) res10: Boolean = false
19

def foreach(f: (A) => Unit): Unit

將函數(shù)應(yīng)用到列表的所有元素

20

def head: A

獲取列表的第一個(gè)元素

21

def indexOf(elem: A, from: Int): Int

從指定位置 from 開(kāi)始查找元素第一次出現(xiàn)的位置

22

def init: List[A]

返回所有元素,除了最后一個(gè)

23

def intersect(that: Seq[A]): List[A]

計(jì)算多個(gè)集合的交集

24

def isEmpty: Boolean

檢測(cè)列表是否為空

25

def iterator: Iterator[A]

創(chuàng)建一個(gè)新的迭代器來(lái)迭代元素

26

def last: A

返回最后一個(gè)元素

27

def lastIndexOf(elem: A, end: Int): Int

在指定的位置 end 開(kāi)始查找元素最后出現(xiàn)的位置

28

def length: Int

返回列表長(zhǎng)度

29

def map[B](f: (A) => B): List[B]

通過(guò)給定的方法將所有元素重新計(jì)算

30

def max: A

查找最大元素

31

def min: A

查找最小元素

32

def mkString: String

列表所有元素作為字符串顯示

33

def mkString(sep: String): String

使用分隔符將列表所有元素作為字符串顯示

34

def reverse: List[A]

列表反轉(zhuǎn)

35

def sorted[B >: A]: List[A]

列表排序

36

def startsWith[B](that: Seq[B], offset: Int): Boolean

檢測(cè)列表在指定位置是否包含指定序列

37

def sum: A

計(jì)算集合元素之和

38

def tail: List[A]

返回所有元素,除了第一個(gè)

39

def take(n: Int): List[A]

提取列表的前n個(gè)元素

40

def takeRight(n: Int): List[A]

提取列表的后n個(gè)元素

41

def toArray: Array[A]

列表轉(zhuǎn)換為數(shù)組

42

def toBuffer[B >: A]: Buffer[B]

返回緩沖區(qū),包含了列表的所有元素

43

def toMap[T, U]: Map[T, U]

List 轉(zhuǎn)換為 Map

44

def toSeq: Seq[A]

List 轉(zhuǎn)換為 Seq

45

def toSet[B >: A]: Set[B]

List 轉(zhuǎn)換為 Set

46

def toString(): String

列表轉(zhuǎn)換為字符串

更多方法可以參考 API文檔

Scala 集合 Scala 集合