Abstract data structures: Difference between revisions

From Computer Science Wiki
Line 70: Line 70:


== Comparison of static vs dynamic data structures ==  
== Comparison of static vs dynamic data structures ==  
 
This comparison is used from [[IB Computer Science textbook | Hodder Education wonderful book Computer Science by Bob Reeves]].
{| style="width: 95%;" class="wikitable"
{| style="width: 95%;" class="wikitable"
|-
|-

Revision as of 11:22, 5 December 2016

Abstract data types[1]

In computer science, an abstract data type (ADT) is a mathematical model for data types where a data type is defined by its behavior (semantics) from the point of view of a user of the data, specifically in terms of possible values, possible operations on data of this type, and the behavior of these operations. This contrasts with data structures, which are concrete representations of data, and are the point of view of an implementer, not a user.

Formally, an ADT may be defined as a "class of objects whose logical behavior is defined by a set of values and a set of operations"; this is analogous to an algebraic structure in mathematics. What is meant by "behavior" varies by author, with the two main types of formal specifications for behavior being axiomatic (algebraic) specification and an abstract model; these correspond to axiomatic semantics and operational semantics of an abstract machine, respectively. Some authors also include the computational complexity ("cost"), both in terms of time (for computing operations) and space (for representing values).[2]

In more common language, a data structure is just some arrangement of data that we've built into an orderly arrangement.

Some types of abstract data structures[edit]

  1. arrays
  2. stack
  3. queue
  4. linked list
  5. binary tree

Basic operations of data structures[edit]

I found this excellent slide from Simon Allardice.

Basic operations of arrays.png

Types of abstract data structures[edit]

Thinking recursively[edit]

Abstract data structures[edit]


Linked lists[edit]

Trees[edit]

Comparison of different data structures[edit]

I'm still working on this. :-)


Data Structure Strengths Weaknesses
arrays Inserting and deleting elements, iterating through the collection Sorting and searching, Inserting and deleting - especially if you are inserting and deleting at the beginning or the end of the array
linked list direct indexing, Easy to create and use direct access, searching and sorting
stacks and queues designed for LIFO / FIFO direct access, searching and sorting
hash tables speed of insertion and deletion, speed of access some overhead, retrieving in a sorted order, searching for a specific value
Sets checking for membership (is an object in a collection), avoiding duplicates direct access, almost everything else
binary search trees speed of insertion and deletion, speed of access, maintaining sorted order some overhead


  • Fixed structures are faster / smaller
  • Ask yourself: what holds the most data and what holds the most frequently changed data

Comparison of static vs dynamic data structures[edit]

This comparison is used from Hodder Education wonderful book Computer Science by Bob Reeves.

Static data structure Dynamic data structure
Inefficient as memory is allocated that may not be needed. Efficient as the amount of memory varies as needed.
Fast access to each element of data as the memory location is fixed when the program is written. Slower access to each element as the memory location is allocated at run-time.
Memory addresses allocated will be contiguous so quicker to access. Memory addresses allocated may be fragmented so slower to access.
Structures are a fixed size, making them more predictable to work with. For example, they can contain a header. Structures vary in size so there needs to be a mechanism for knowing the size of the current structure.
The relationship between different elements of data does not change. The relationship between different elements of data will change as the program is run.

Standards[edit]

  • Identify a situation that requires the use of recursive thinking.
  • Identify recursive thinking in a specified problem solution.
  • Trace a recursive algorithm to express a solution to a problem.
  • Describe the characteristics of a two- dimensional array.
  • Construct algorithms using two- dimensional arrays.
  • Describe the characteristics and applications of a stack.
  • Construct algorithms using the access methods of a stack.
  • Describe the characteristics and applications of a queue.
  • Construct algorithms using the access methods of a queue.
  • Explain the use of arrays as static stacks and queues.
  • Describe the features and characteristics of a dynamic data structure.
  • Describe how linked lists operate logically.
  • Sketch linked lists (single, double and circular).
  • Describe how trees operate logically (both binary and non-binary).
  • Define the terms: parent, left-child, right-child, subtree, root and leaf.
  • State the result of inorder, postorder and preorder tree traversal.
  • Sketch binary trees.
  • Define the term dynamic data structure.
  • Compare the use of static and dynamic data structures.
  • Suggest a suitable structure for a given situation.

References[edit]