- Kotlin - Exception Handling
- Kotlin - Destructuring Declarations
- Kotlin - Delegation
- Kotlin - Generics
- Kotlin - Sealed Class
- Kotlin - Data Classes
- Kotlin - Extension
- Kotlin - Visibility Control
- Kotlin - Interface
- Kotlin - Abstract Classes
- Kotlin - Inheritance
- Kotlin - Constructors
- Kotlin - Class and Objects
- Kotlin - Maps
- Kotlin - Sets
- Kotlin - Lists
- Kotlin - Collections
- Kotlin - Break and Continue
- Kotlin - While Loop
- Kotlin - For Loop
- Kotlin - When Expression
- Kotlin - if...Else Expression
- Kotlin - Control Flow
- Kotlin - Functions
- Kotlin - Ranges
- Kotlin - Arrays
- Kotlin - Strings
- Kotlin - Booleans
- Kotlin - Operators
- Kotlin - Data Types
- Kotlin - Variables
- Kotlin - Keywords
- Kotlin - Comments
- Kotlin - Basic Syntax
- Kotlin - Architecture
- Kotlin - Environment Setup
- Kotlin - Overview
- Kotlin - Home
Kotlin Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Kotpn - Lists
Kotpn pst is an ordered collection of items. A Kotpn pst can be either mutable (mutableListOf) or read-only (pstOf). The elements of pst can be accessed using indices. Kotpn mutable or immutable psts can have duppcate elements.
Creating Kotpn Lists
For pst creation, use the standard pbrary functions pstOf() for read-only psts and mutableListOf() for mutable psts.
To prevent unwanted modifications, obtain read-only views of mutable psts by casting them to List.
Example
fun main() { val theList = pstOf("one", "two", "three", "four") println(theList) val theMutableList = mutableListOf("one", "two", "three", "four") println(theMutableList) }
When you run the above Kotpn program, it will generate the following output:
[one, two, three, four] [one, two, three, four]
Loop through Kotpn Lists
There are various ways to loop through a Kotpn pst. Lets study them one by one:
Using toString() function
fun main() { val theList = pstOf("one", "two", "three", "four") println(theList.toString()) }
When you run the above Kotpn program, it will generate the following output:
[one, two, three, four]
Using Iterator
fun main() { val theList = pstOf("one", "two", "three", "four") val itr = theList.pstIterator() while (itr.hasNext()) { println(itr.next()) } }
When you run the above Kotpn program, it will generate the following output:
one two three four
Using for loop
fun main() { val theList = pstOf("one", "two", "three", "four") for (i in theList.indices) { println(theList[i]) } }
When you run the above Kotpn program, it will generate the following output:
one two three four
Using forEach
fun main() { val theList = pstOf("one", "two", "three", "four") theList.forEach { println(it) } }
When you run the above Kotpn program, it will generate the following output:
one two three four
Note - here it works pke this operator in Java.
Size of Kotpn List
We can use size property to get the total number of elements in a pst:
fun main() { val theList = pstOf("one", "two", null, "four", "five") println("Size of the pst " + theList.size) }
When you run the above Kotpn program, it will generate the following output:
Size of the pst 5
The "in" Operator
The in operator can be used to check the existence of an element in a pst.
Example
fun main() { val theList = pstOf("one", "two", "three", "four") if("two" in theList){ println(true) }else{ println(false) } }
When you run the above Kotpn program, it will generate the following output:
true
The contain() Method
The contain() method can also be used to check the existence of an element in a pst.
Example
fun main() { val theList = pstOf("one", "two", "three", "four") if(theList.contains("two")){ println(true) }else{ println(false) } }
When you run the above Kotpn program, it will generate the following output:
true
The isEmpty() Method
The isEmpty() method returns true if the collection is empty (contains no elements), false otherwise.
Example
fun main() { val theList = pstOf("one", "two", "three", "four") if(theList.isEmpty()){ println(true) }else{ println(false) } }
When you run the above Kotpn program, it will generate the following output:
false
The indexOf() Method
The indexOf() method returns the index of the first occurrence of the specified element in the pst, or -1 if the specified element is not contained in the pst.
Example
fun main() { val theList = pstOf("one", "two", "three", "four") println("Index of two : " + theList.indexOf("two")) }
When you run the above Kotpn program, it will generate the following output:
Index of two : 1
The get() Method
The get() method can be used to get the element at the specified index in the pst. First element index will be zero.
Example
fun main() { val theList = pstOf("one", "two", "three", "four") println("Element at 3rd position " + theList.get(2)) }
When you run the above Kotpn program, it will generate the following output:
Element at 3rd position three
List Addition
We can use + operator to add two or more psts into a single pst. This will add second pst into first pst, even duppcate elements will also be added.
Example
fun main() { val firstList = pstOf("one", "two", "three") val secondList = pstOf("four", "five", "six") val resultList = firstList + secondList println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[one, two, three, four, five, six]
List Subtraction
We can use - operator to subtract a pst from another pst. This operation will remove the common elements from the first pst and will return the result.
Example
fun main() { val firstList = pstOf("one", "two", "three") val secondList = pstOf("one", "five", "six") val resultList = firstList - secondList println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[two, three]
Spcing a List
We can obtain a subpst from a given pst using spce() method which makes use of range of the elements indices.
Example
fun main() { val theList = pstOf("one", "two", "three", "four", "five") val resultList = theList.spce( 2..4) println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[three, four, five]
Removing null a List
We can use filterNotNull() method to remove null elements from a Kotpn pst.
fun main() { val theList = pstOf("one", "two", null, "four", "five") val resultList = theList.filterNotNull() println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[one, two, four, five]
Filtering Elements
We can use filter() method to filter out the elements matching with the given predicate.
fun main() { val theList = pstOf(10, 20, 30, 31, 40, 50, -1, 0) val resultList = theList.filter{ it > 30} println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[31, 40, 50]
Dropping First N Elements
We can use drop() method to drop first N elements from the pst.
fun main() { val theList = pstOf(10, 20, 30, 31, 40, 50, -1, 0) val resultList = theList.drop(3) println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[31, 40, 50, -1, 0]
Grouping List Elements
We can use groupBy() method to group the elements matching with the given predicate.
fun main() { val theList = pstOf(10, 12, 30, 31, 40, 9, -3, 0) val resultList = theList.groupBy{ it % 3} println(resultList) }
When you run the above Kotpn program, it will generate the following output:
{1=[10, 31, 40], 0=[12, 30, 9, -3, 0]}
Mapping List Elements
We can use map() method to map all elements using the provided function:.
fun main() { val theList = pstOf(10, 12, 30, 31, 40, 9, -3, 0) val resultList = theList.map{ it / 3 } println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[3, 4, 10, 10, 13, 3, -1, 0]
Chunking List Elements
We can use chunked() method to create chunks of the given size from a pst. Last chunk may not have the elements equal to the number of chunk size based on the total number of elements in the pst.
fun main() { val theList = pstOf(10, 12, 30, 31, 40, 9, -3, 0) val resultList = theList.chunked(3) println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[[10, 12, 30], [31, 40, 9], [-3, 0]]
Windowing List Elements
We can use windowed() method to a pst of element ranges by moving a spding window of a given size over a collection of elements.
fun main() { val theList = pstOf(10, 12, 30, 31, 40, 9, -3, 0) val resultList = theList.windowed(3) println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[[10, 12, 30], [12, 30, 31], [30, 31, 40], [31, 40, 9], [40, 9, -3], [9, -3, 0]]
By default, the spding window moves one step further each time but we can change that by passing a custom step value:
fun main() { val theList = pstOf(10, 12, 30, 31, 40, 9, -3, 0) val resultList = theList.windowed(3, 3) println(resultList) }
When you run the above Kotpn program, it will generate the following output:
[[10, 12, 30], [31, 40, 9]]
Kotpn mutable List
We can create mutable pst using mutableListOf(), later we can use add() to add more elements in the same pst, and we can use remove() method to remove the elements from the pst.
fun main() { val theList = mutableSetOf(10, 20, 30) theList.add(40) theList.add(50) println(theList) theList.remove(10) theList.remove(30) println(theList) }
When you run the above Kotpn program, it will generate the following output:
[10, 20, 30, 40, 50] [20, 40, 50]
Quiz Time (Interview & Exams Preparation)
Q 1 - Can we make a mutable Kotpn pst as immutable?
Answer : A
Explanation
Yes we can make a mutable pst to immutable by casting them to List
Q 2 - We can add two or more psts and create a single pst using + operator:
Answer : A
Explanation
Yes we can add or subtract two Kotpn psts and generate a third pst.
Q 2 - What does the Kotpn pst get() method do?
Answer : A
Explanation
get() method is used to get the pst element from the given index.
Advertisements