Scala Collections - รายการ
Scala Lists ค่อนข้างคล้ายกับอาร์เรย์ซึ่งหมายความว่าองค์ประกอบทั้งหมดของรายการมีประเภทเดียวกัน แต่มีความแตกต่างที่สำคัญสองประการ ประการแรกรายการไม่เปลี่ยนรูปซึ่งหมายความว่าองค์ประกอบของรายการไม่สามารถเปลี่ยนแปลงได้โดยการมอบหมาย ประการที่สองรายการแสดงถึงรายการที่เชื่อมโยงในขณะที่อาร์เรย์แบน
ประเภทของรายการที่มีองค์ประกอบประเภท T เขียนเป็น List[T].
ลองดูตัวอย่างต่อไปนี้เป็นรายการบางส่วนที่กำหนดไว้สำหรับประเภทข้อมูลต่างๆ
// List of Strings
val fruit: List[String] = List("apples", "oranges", "pears")
// List of Integers
val nums: List[Int] = List(1, 2, 3, 4)
// Empty List.
val empty: List[Nothing] = List()
// Two dimensional list
val dim: List[List[Int]] = List(
List(1, 0, 0),
List(0, 1, 0),
List(0, 0, 1)
)
รายการทั้งหมดสามารถกำหนดได้โดยใช้ส่วนประกอบพื้นฐานสองส่วนหาง Nil และ ::ซึ่งเด่นชัด cons. Nil ยังแสดงถึงรายการว่าง รายการทั้งหมดข้างต้นสามารถกำหนดได้ดังต่อไปนี้
// List of Strings
val fruit = "apples" :: ("oranges" :: ("pears" :: Nil))
// List of Integers
val nums = 1 :: (2 :: (3 :: (4 :: Nil)))
// Empty List.
val empty = Nil
// Two dimensional list
val dim = (1 :: (0 :: (0 :: Nil))) ::
(0 :: (1 :: (0 :: Nil))) ::
(0 :: (0 :: (1 :: Nil))) :: Nil
การดำเนินการขั้นพื้นฐานในรายการ
การดำเนินการทั้งหมดในรายการสามารถแสดงในรูปแบบของสามวิธีต่อไปนี้
ซีเนียร์ No | วิธีการและคำอธิบาย |
---|---|
1 | head วิธีนี้จะส่งคืนองค์ประกอบแรกของรายการ |
2 | tail วิธีนี้ส่งคืนรายการที่ประกอบด้วยองค์ประกอบทั้งหมดยกเว้นรายการแรก |
3 | isEmpty วิธีนี้จะคืนค่าจริงหากรายการว่างเปล่าหรือเป็นเท็จ |
ตัวอย่างต่อไปนี้แสดงวิธีใช้วิธีการข้างต้น
ตัวอย่าง
object Demo {
def main(args: Array[String]) {
val fruit = "apples" :: ("oranges" :: ("pears" :: Nil))
val nums = Nil
println( "Head of fruit : " + fruit.head )
println( "Tail of fruit : " + fruit.tail )
println( "Check if fruit is empty : " + fruit.isEmpty )
println( "Check if nums is empty : " + nums.isEmpty )
}
}
บันทึกโปรแกรมข้างต้นใน Demo.scala. คำสั่งต่อไปนี้ใช้เพื่อคอมไพล์และรันโปรแกรมนี้
คำสั่ง
\>scalac Demo.scala
\>scala Demo
เอาต์พุต
Head of fruit : apples
Tail of fruit : List(oranges, pears)
Check if fruit is empty : false
Check if nums is empty : true
การเชื่อมต่อรายการ
คุณสามารถใช้อย่างใดอย่างหนึ่ง ::: ตัวดำเนินการหรือ List.:::() วิธีการหรือ List.concat()วิธีการเพิ่มสองรายการขึ้นไป โปรดดูตัวอย่างต่อไปนี้ด้านล่าง -
ตัวอย่าง
object Demo {
def main(args: Array[String]) {
val fruit1 = "apples" :: ("oranges" :: ("pears" :: Nil))
val fruit2 = "mangoes" :: ("banana" :: Nil)
// use two or more lists with ::: operator
var fruit = fruit1 ::: fruit2
println( "fruit1 ::: fruit2 : " + fruit )
// use two lists with Set.:::() method
fruit = fruit1.:::(fruit2)
println( "fruit1.:::(fruit2) : " + fruit )
// pass two or more lists as arguments
fruit = List.concat(fruit1, fruit2)
println( "List.concat(fruit1, fruit2) : " + fruit )
}
}
บันทึกโปรแกรมข้างต้นใน Demo.scala. คำสั่งต่อไปนี้ใช้เพื่อคอมไพล์และรันโปรแกรมนี้
คำสั่ง
\>scalac Demo.scala
\>scala Demo
เอาต์พุต
fruit1 ::: fruit2 : List(apples, oranges, pears, mangoes, banana)
fruit1.:::(fruit2) : List(mangoes, banana, apples, oranges, pears)
List.concat(fruit1, fruit2) : List(apples, oranges, pears, mangoes, banana)
การสร้างรายการเครื่องแบบ
คุณสามารถใช้ได้ List.fill()วิธีการสร้างรายการที่ประกอบด้วยสำเนาขององค์ประกอบเดียวกันเป็นศูนย์ขึ้นไป ลองใช้โปรแกรมตัวอย่างต่อไปนี้
ตัวอย่าง
object Demo {
def main(args: Array[String]) {
val fruit = List.fill(3)("apples") // Repeats apples three times.
println( "fruit : " + fruit )
val num = List.fill(10)(2) // Repeats 2, 10 times.
println( "num : " + num )
}
}
บันทึกโปรแกรมข้างต้นใน Demo.scala. คำสั่งต่อไปนี้ใช้เพื่อคอมไพล์และรันโปรแกรมนี้
คำสั่ง
\>scalac Demo.scala
\>scala Demo
เอาต์พุต
fruit : List(apples, apples, apples)
num : List(2, 2, 2, 2, 2, 2, 2, 2, 2, 2)
การจัดตารางฟังก์ชัน
คุณสามารถใช้ฟังก์ชันร่วมกับ List.tabulate()วิธีการใช้กับองค์ประกอบทั้งหมดของรายการก่อนจัดตารางรายการ อาร์กิวเมนต์ของมันก็เหมือนกับของ List.fill: รายการอาร์กิวเมนต์แรกให้ขนาดของรายการที่จะสร้างและอันที่สองอธิบายองค์ประกอบของรายการ ข้อแตกต่างเพียงอย่างเดียวก็คือแทนที่องค์ประกอบจะได้รับการแก้ไข แต่จะคำนวณจากฟังก์ชัน
ลองใช้โปรแกรมตัวอย่างต่อไปนี้
ตัวอย่าง
object Demo {
def main(args: Array[String]) {
// Creates 5 elements using the given function.
val squares = List.tabulate(6)(n => n * n)
println( "squares : " + squares )
val mul = List.tabulate( 4,5 )( _ * _ )
println( "mul : " + mul )
}
}
บันทึกโปรแกรมข้างต้นใน Demo.scala. คำสั่งต่อไปนี้ใช้เพื่อคอมไพล์และรันโปรแกรมนี้
คำสั่ง
\>scalac Demo.scala
\>scala Demo
เอาต์พุต
squares : List(0, 1, 4, 9, 16, 25)
mul : 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วิธีการย้อนกลับองค์ประกอบทั้งหมดของรายการ ตัวอย่างต่อไปนี้แสดงการใช้งาน
ตัวอย่าง
object Demo {
def main(args: Array[String]) {
val fruit = "apples" :: ("oranges" :: ("pears" :: Nil))
println( "Before reverse fruit : " + fruit )
println( "After reverse fruit : " + fruit.reverse )
}
}
บันทึกโปรแกรมข้างต้นใน Demo.scala. คำสั่งต่อไปนี้ใช้เพื่อคอมไพล์และรันโปรแกรมนี้
คำสั่ง
\>scalac Demo.scala
\>scala Demo
เอาต์พุต
Before reverse fruit : List(apples, oranges, pears)
After reverse fruit : List(pears, oranges, apples)