1.4.2) Data Structures Flashcards

1
Q

what is an array?

A

An ordered, finite set of elements of a single type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a record?

A

A row in a file, made up of fields (eg. 001, Anthony, anthony@gmail.com)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is a list?

A

A data structure consisting of a number of orders items where the items can occur more than once, can contain more than one datatype

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is a tuple?

A

an audit set of values of any type, is immutable so cannot be changed, use regular brackets not square

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a linked list?

A

A dynamic data structure used to hold an aud sequence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

how does linked list work?

A

Each piece of data has an index, the data and a pointer. The pointer indicates the next item in the list. The start pointer shows the algorithm where the beginning of the list is.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you append to a linked list?

A

change the other data values pointers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a disadvantage of storing pointers?

A

they waste memory, items cannot be directly accessed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a graph?

A

A set of vertices/nodes connected by edges/arcs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the three different types of graph?

A

Directed graph, undirected graph, weighted graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is the directed graph?

A

Graph where the edges can only be traversed in One Direction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is an undirected graph?

A

when the edges can be traversed in both directions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is a weighted graph?

A

When a cost is attached to each edge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is an adjacency matrix?

A

A matrix storing graphs using a table (each node is given a row and column)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is an adjacency list?

A

A way of storing graphs where each node stores a list where it states its connections to other nodes (eg A:{B:4, C:6})

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Advantages of an adjacency matrix

A

convenient to work with due to quicker access times, easy to add nodes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Advantage of adjacency list

A

more space efficient for large sparse networks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What structure does a stack have?

A

Last in first out

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What are some real life examples of stacks?

A

Going back a page in the web browser, undo buttons

20
Q

what is a static vs dynamic stack?

A

Static stack – has a fixed size (preferable as more efficient)
Dynamic – has a flexible size

21
Q

what functions are available when manipulating a stack?

A

Push, peak, pop

22
Q

What does the push function do? What must be checked before use?

A

add a value to the top of the stack, stack must be checked to see if it’s full

23
Q

what does the peek function do?

A

Return the top value from the stack

25
Q

what does the pop value do?

A

Removes and returns the top value of the stack

26
Q

what structure do queues follow?

A

first in first out

27
Q

where are queues often used?

A

Printers, keyboards

28
Q

what is a linear queue?

A

a queue where items are added to the next available space starting from the front, items are removed from the front of the queue, pointers are used to indicate the front and back of queue

29
Q

what is a circular queue?

A

The same as a linear except once the pointer reaches the maximum size of the queue it loops back to the beginning provided it’s empty

30
Q

disadvantage of a circular queue

A

Harder to implement

31
Q

What are the functions for queues?

A

enQueue, deQueue

32
Q

what are trees?

A

A form of graph with a root node which connects to all other nodes using branches

33
Q

What is a node (trees)?

A

An item in the tree

34
Q

What is an edge (tree)?

A

Connect to nodes together, also known as a branch or arc

35
Q

what is a root(tree)?

A

A single node, which does not have any incoming nodes

36
Q

what is a child (tree)?

A

A node with incoming edges

37
Q

what is a parent(tree)?

A

a node with incoming edges

38
Q

What is a sub tree?

A

A subsection of a tree consisting of a parent and all the children of a parent

39
Q

What is a leaf?

A

A node with no children

40
Q

What is a binary tree?

A

A tree where each node has a maximum of two children

41
Q

What are binary trees used for?

A

To represent information for binary searches, making it easy to search through

42
Q

What are the three methods of traversing a binary tree?

A

Pre-order, in order, post order

43
Q

What is pre order traversal?

A

pre drinks, walking with head stuck to the left

44
Q

what is in order traversal?

A

like a photocopier from left to right

45
Q

what is post order traversal?

A

i’ve gotta post this! looking at something in the distance (to the left) alllll the time

47
Q

What is a hash table?