Data structures

Data structures affect how long it takes to access and update data. Selecting appropriate data structures for a problem is in an important skill for software engineers to develop.

Table of contents

  1. Introduction
    1. Abstract data types
  2. Contiguous vs Linked data structures
    1. Arrays
    2. Pointers and linked structures
    3. Comparison
  3. Stacks and queues
  4. Dictionaries
    1. Hash tables
  5. Binary Search Trees
  6. References

Introduction

A data structure is a representation of data and a collection of associated operations [1, P. 5].

Data structures are implementations of abstract data types [1, P. 4].

Abstract data types

ADTs (Abstract Data Types) define the set of operations supported by a data structure [1, P. 4].

An ADT is the interface of a data structure, it doesn’t define how a data structure implements the operations [1, P. 4].

There can be many implementations of an ADT [1, P. 4].

Contiguous vs Linked data structures

Data structures can be either contiguous in memory, or linked with pointers.

Contiguously allocated structures are built from a single slab of memory. They include arrays, matrices, and heaps [2, P. 66].

Linked data structures are built from chunks of memory linked together via pointers. They include lists, trees, and graph adjacency lists [2, P. 66].

Arrays

Arrays are the fundamental contiguously-allocated data structure. Arrays are fixed-size, and their items can be accessed using an index.

The advantages of contiguously allocated arrays are:

  • Constant time access. As long as you have the index, you can access an array item in constant time.
  • Space efficiency. Arrays only consist of data. No space is spent on pointers or other formatting information.
  • Memory locality. It’s common to iterate over all items of a data structure. Arrays are very good for this because they exhibit good memory locality: each item exists directly after the previous item in memory. This works well with the cache system used in modern computer architectures.

[2, P. 66]

There are two types of array:

  1. Static arrays
  2. Dynamic arrays

Static arrays can’t have their size modified during execution.

Dynamic arrays can increase and decrease in size during execution. A simple implementation is to initialize an array with a size of 1. Whenever the array runs out of space, its size is doubled by allocating double the previous size in memory and copying over the old array items to the lower half of the new array [2, P. 67].

Pointers and linked structures

A pointer “represents the address of a location in memory”. Pointers connect linked pieces of a data structure together [2, P. 67].

Linked lists are the simplest linked data structure. A linked list is made up of nodes that contain data. As well as data, each node contains a pointer to the next next node in the list.

Figure: Singly linked list [3, P. 86]

A generic linked list definition includes a next pointer, and a data value that contains some data:

typedef struct list {
  DATA data;
  struct list *next;
} list;

Generally, linked data structures share common properties:

  • Each node contains one or more data fields.
  • Each node contains at least one pointer to another node (although the pointer can be empty). This can mean that much of the data space of linked structures is taken up with pointers, not data.

[2, P. 68]

Comparison

The advantages of arrays include:

  • Random (constant) access.
  • Better memory locality.
  • Better space efficieny (since they don’t need to store pointers).

[2, P. 71]

The advantages of linked structures over static arrays include:

  • No overflows unless memory is full.
  • Insertions and deletions are simpler than for contiguous arrays.

[2, Pp. 71-2]

Both of these data types can be thought of as recursive objects. Removing the first element from a linked list leaves a smaller linked list, and splitting elements from an array creates two smaller arrays. Divide-and-conquer algorithms work well on these recursive data structures [2, P. 71].

Stacks and queues

Stacks and queues are both container data structures that allow you to add and retrieve data.

Stacks support retrieval based on LIFO (last-in-first-out). That is, the last item added to a stack is the first item to be removed. LIFO is often compared to a pile of cafeteria trays. A worker adds more trays to a pile by placing them on top of the existing trays and a customer takes their tray from the top of the pile.

The put and get operations for stacks are usually called push() and pop() [2, P. 71].

Queues support retrieval based on FIFO (first-in-first-out). They work the same way as real-world queues.

The put and get operations for queues are usually called enqueue() and dequeue() [2, P. 71].

Figure: A queue [3, P. 86]

Stacks and queues are commonly implemented with either arrays or linked lists [2, P. 71].

Dictionaries

A dictionary data type enables access to data items by their content, or by a key value.

Dictionaries generally support the following operations:

  • search(k)
  • insert(k, v)
  • delete(k)

Some dictionary data structures include other useful operations:

  • max() or min().
  • predecessor(k) or successor(k).

[2, Pp. 72-3]

Hash tables

Hash tables are an efficient way of maintaining a dictionary.

A hash table works by using a hashing function to map a key to an integer. The integer is used as an index to store and retrieve an item from an array (or from a list stored in an array) [2, P. 89].

Normally the integer produced by the hashing function () is larger than the number of slots available in the hash table (). The large integer can be converted to an integer in the range of the hash table slots by calculating the remainder of using the modulo (%) operator [2, P. 89].

Hash tables often suffer from collisions, where multiple distinct keys hash to the same value. There are different strategies that can be used in the case of collisions [2, P. 89].

One approach is chaining. In chaining the hash table is represented as an array of linked lists. Each time an item is added to the hash table, it’s inserted as a list node [2, P. 89].

Figure: Hash table using chaining [3, P. 86]

Binary Search Trees

Binary search trees are a data structure that enable fast search.

Binary search trees are built on rooted binary trees. A rooted binary tree is recursively defined as either empty, or a node (the root) with two child rooted binary trees, known as the left subtree and right subtree [2, P. 77].

Figure: Binary tree [3, P. 86]

A binary search tree is a rooted binary tree where all nodes in the left subtree have a value < the root, and all nodes in the right subtree have trees > the root [2, P. 77].

Figure: Binary search tree [3, P. 86]

Binary search trees offer search, insertion, and deletion, where is the height of the tree. If the search tree is balanced (the difference between the depth of the bottom subtrees is at most 1), then this is , where is the number of items. The problem is that binary search trees will not always be naturally balanced [2, Pp. 81-2].

Balanced binary search trees are data structures that maintain a balanced tree by doing extra work during insertion and deletion. For example, red-black trees and splay trees [2, P. 82].

References

  1. [1] P. Morin, Open Data Structures, 1st ed. AU Press, 2013.
  2. [2] S. Skiena, The Algorithm Design Manual, 2nd ed. Springer, 2008.
  3. [3] L. R., Linux Kernel Development (Developer’s Library), 3rd ed. Addison-Wesley Professional, 2010.