Data Structures & Data Representation

?

Dynamic Data Structures

The size of a "dynamic" data structure changes as data is added and removed. However, it is more complex to program because the size is not fixed. All dynamic data structures can be stored within static data structures, as a hard disk (or other physical storage medium) is effectively a massive static data structure.

1 of 16

Arrays

Arrays are always static. However, it is possible to make a (static) array "appear" dynamic. Space is reserved for potential new items within the array. The more space that is reserved, the more new records can be added, but the less efficiently the data is stored.

2 of 16

Linked Lists

Every item in a linked list has a pointer. The pointer "points" to the next entry in the list. A pointer known as a "terminator" represents the end of the list. This means that the data does ` Qnot have to be stored in a "block", but can be scattered. It also allows the data (but not the structure) to be changed after the structure is created.

3 of 16

Stacks

A stack is similar to an array, but data is only added (or pushed) at one end. It is removed (or popped) from the same end of the structure. A stack is a "last in first out" structure. The top of the stack can also be viewed by peeking at it.

To add (push) data to a stack, the stack has to be checked to ensure it is not full. Similarly, when removing data, the stack has to be checked to ensure it is not empty.

4 of 16

Queues

A queue is similar to an array, but data is only added at one end (the tail). It is removed from the other end (the head). A queue is a "first in first out".

To add data to a queue (enqueue), the queue is first checked to confirm it is not full (if it is then an error is reported). Then, the tail pointer is pointed to the location of the new item. To remove data from a queue (dequeue), the queue is first checked to confirm it is not empty (if it is then an error is reported). Then, the data is removed, and the head pointer is moved to the next item.

5 of 16

Trees p1

Trees are incredibly powerful data structures. Trees consist of nodes, and each node can have up to two nodes coming off it. The "top" node is known as the root node. Nodes are connected using pointers.

A diagram of a tree data structure (http://www.ocrcomputing.org.uk/images/tree_structure.png)

6 of 16

Trees P2

When creating a tree structure, the root node is chosen. Data which comes before the root (in our chosen order) goes to the left, and data which is after the root goes to the right. This process is repeated until a "null" pointer is found - the new node is inserted here with "null" pointers.

7 of 16

Trees P3

The subtrees within a tree data structure (http://www.ocrcomputing.org.uk/images/subtree.png)

8 of 16

Trees P4

To travel through (traverse) a binary tree (in order), we visit the left subtree, and traverse that. We then visit the root, and then traverse the right subtree. This process is iterative.

9 of 16

Searching

Serial searching is unavoidable when data is in a random order. The search starts at the first item and moves through the list until either the desired item is found or the end of the list is reached.

10 of 16

Binary Searching

Binary searching is substantially quicker (and exponentially quicker, the longer the list) than serial searching, but it relies on the list being in order.

In a binary search, the middle value is compared to the search value. If this value is the search string, then the search ends. Otherwise, the list is split into two sublists (a list of larger values and a list of smaller values). This process is iterative.

11 of 16

Merging Data Files

To merge two (ordered) data files into one (ordered) data file:

  • Compare the first two values from the files.
  • Write the lowest value to the new (merged) file.
  • Delete the lowest value from the old file.
  • If (at least) one data file is empty, write the rest of the other data file to the new (merged) file, and then the process is finished.

This process is iterative.

12 of 16

Insertion Sort

The insertion sort "steps" through the list, inserting each item in term into the correct position (relative to the "sorted" items before it). The insertion sort is simple to implement, and generally quicker for small datasets than a quick sort.

13 of 16

Quick Sort

The quicksort selects an item at random (called the pivot). It then creates two new lists, one with all the items less than the pivot, and one with all the items greater than the pivot. This process is repeated until all the "sublists" have only one item.

14 of 16

Floating Point Binary

To represent large numbers in denary, we use standard form. This means that we use a small number (in the range 1.0 - 9.9), and we multiply it by a power of 10. This works because denary is base 10.

This method is also used to represent "real" numbers in binary - also known as "floating point" numbers (because the decimal point "floats" - it moves depending on the power of 2). Floating point numbers are made from two parts - the "mantissa" (equivalent to the small number in standard form) and the exponent (equivalent to the power of 10 in standard form). Both parts of the number are written in two's compliment - this means that if the first digit is a 1 then the number is negative.

15 of 16

Floating Point Binary

n.b. - to secure full marks in the exam you will need to show full working - this is done by:

  • Stating the (denary) value of exponent.
  • Showing the movement of the decimal point (to the right or to the left).
  • Stating the (denary) value of the number.
16 of 16

Comments

No comments have yet been made

Similar Computing resources:

See all Computing resources »See all Data structures resources »