5 Data handling with lists
- Classifying data structures
- Using the ubiquitous singly linked list
- Understanding the importance of immutability
- Handling lists with recursion and functions
Data structures are one of the most important concepts in programming, as well as in everyday life. The world as you see it is a huge data structure composed of simpler data structures, which are in turn composed of simpler structures. Each time you model something, be it objects or facts, you end up with data structures.
Data structures come in many types. In computing, data structures referring to the multiple occurrences of data of a given common type are generally represented as a whole by the term collections. A collection is a group of data items that have some relationship to each other. In its simplest form, this relationship is that they belong to the same group.
This chapter covers data structures and how to create your own implementation of the singly linked list. Kotlin has its own lists, both mutable and immutable. But the Kotlin immutable list isn’t really immutable, and it doesn’t implement data sharing, making operations such as adding and removing elements less efficient. The immutable list you’ll develop in this chapter is far more efficient for stack operations, and it’s immutable.