Puneet Varma (Editor)

Purely functional data structure

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In computer science, a purely functional data structure is a data structure that can be implemented in a purely functional language. The main difference between an arbitrary data structure and a purely functional one, is that the latter is (strongly) immutable. This restriction ensures that the data structure possesses the advantages of immutable objects: (full) persistency, quick copy of objects, and thread safety. Efficient purely functional data structures may require the use of lazy evaluation and memoization.

Contents

Purely functional data structures are often represented in a different way than their imperative counterparts. For example, an array with constant-time access and update is a basic component of most imperative languages. Many imperative data structures, such as the hash table and binary heap, are based on arrays. An array can be replaced by a map or random access list, which admits a purely functional implementation, but access and update operations may run in logarithmic time. Purely functional data structures can be implemented in imperative and object-oriented languages, but their time and/or space performance may be inferior to that of data structures lacking purely functional properties.

Ensuring that a data structure is purely functional

A data structure is never inherently functional. For example, a stack can be implemented as a singly-linked list. This implementation is purely functional as long as the only operations on the stack are pushing an element onto the stack, reading an element, or removing the stack's top element. However, if the language is not purely functional, the runtime system may be unable to guarantee immutability.

In order to ensure that a data structure is used in a purely functional way in an impure functional language, modules or classes can be used to ensure manipulation via authorized functions only.

Examples of purely functional data structures

Here is a list of abstract data structure with a purely functional implementation.

  • Stack (First-in, last out) implemented as Singly linked list,
  • Queue, implemented as Real-time queue,
  • Double-ended queue, implemented as Real-time double-ended queue,
  • (multi)set of ordered elements and map indexed by ordered keys, implemented as Red–black tree, or more generally by search tree,
  • Priority queue, implemented as Brodal queue
  • Random access list, implemented as Skew binary random access list
  • Design and implementation of purely functional data structures

    In his book Purely Functional Data Structures, computer scientist Chris Okasaki describes techniques used to design and implement purely functional data structures, a small subset of which are summarized below.

    Laziness and memoization

    Lazy evaluation is particularly interesting in a purely functional language, since the order of the evaluation never changes the result of a function. Therefore, lazy evaluation naturally becomes an important part of the construction of purely functional data structures. It allows computation to be done only when its result is actually required. Therefore, the code of a purely functional data structure can, without loss of efficiency, consider similar data which will effectively be used and data which will be ignored, since only the computation required for the first kind of data will actually be performed.

    One of the key tools in building efficient purely functional data structures is memoization. When a computation is done, it is saved, and therefore does not have to be performed a second time. This is particularly important in lazy implementations: additional evaluations may require the same result, but it is impossible to know which evaluation will require it first.

    Amortized analysis and scheduling

    Some data structures, even non-purely-functional ones such as dynamic array, admits operation which are efficient (constant time for dynamic arrays) most of the time, and inefficient (linear time for dynamic arrays) rarely. Amortization can then be used to prove that the average running-time of the operations are efficient. That is, the few inefficient operations are rare enough, and does not change the asymptotical evolution of the time complexity when a sequence of operations is considered.

    In general, having inefficient operations is not acceptable for persistent data structures, because this inefficient operation can be called many times. It is not acceptable either for real-time or imperative systems, where the user may requires the time taken by the operation to be predictable. Furthermore, this unpredictability complicates the use of parallelism.

    In order to avoid those problem, some data structures allows for the inefficient operation to be postponed, this is called scheduling. The only requirement is that the computation of the inefficient operation ends before the result of the operation is actually needed. A constant part of the inefficient operation is performed simultaneously with following call to an efficient operation, so that, the inefficient operation is already totally done when it is needed, and each individual operations remains efficient.

    Example: queue

    For example, amortized queues are composed of two singly linked lists, the front, and the reversed rear. Elements are added to the rear list, and are removed from the front list. Furthermore, each time that the front queue is empty, the rear queue is reversed and became the front queue, while the rear queue becomes empty. The amortized time complexity of each operation is constant, since each cell of the lists is added, reversed and removed at most once. In order to avoid the inefficient operation where the rear list is reversed, real-time queues, adds the restriction that the rear list is at most as long as the front list. To ensure that, when the rear list becomes longer than the front list, the front list is appended to the reversed rear list. Since this operation is inefficient, it is not entirely performed immediately, instead, for each following operations, two cells of the new front lists are actually computed. Therefore, each cell is computed before it is needed, and the new front list is totally computed before the moment where a new inefficient operation needs to be called.

    References

    Purely functional data structure Wikipedia