Essential algorithms and data structures
Data structures
A feature of imperative programming languages, these abstractions of memory allow for the creation of higher order data structures.
What is a list?
A list is a collection of elements of different data types. In practice, a list is either an array in disguise or an implementation of a linked list (see higher order data structures). An array is typically used if the limits of the structure are known when the program is written — for example, we know chess is played on an 8×8 board. Conversely, a list is used when the number of items is more variable such as a player’s inventory in an RPG game. In reality, either an array or a list can usually
be used for the same purpose.
Some programming languages support both arrays and lists while some only support one or the other.
What extra is in the book?
Each algorithm / data structure has its own dedicated chapter in the book, which includes:
A hard copy of the book is available on our shop and a free PDF copy is included for all premium subscribers.