Data Structure Flashcards

1
Q

What is an Array

A

A static collection of items of the same data type called elements

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

When is an Array used

A

When the required number of data items is known in advance

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

What is a Binary Tree

A

A dynamic structure of nodes

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

When are binary trees used

A

Storing and searching a large data sets

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

How does binary search work

A

It repeatedly checks the middle item in the data check and discards half the data during each pass until either the item is found. List must be sorted

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

What is a Hash table search

A

An attempt to find an item immediately without comparing other items in the data set

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

How does Hash table search work

A

Using the hashing function on the key to determine the item index

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

How does Linear search work

A

It checks each item from the start of a list one by one until it reaches finds the specified item. List does not need to be sorted

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

What is the efficiency for Binary search

A

Time complexity: Space Complexity:
Best: O(1) O(1)
Average: O(log n)
Worst: O(log n)

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

What is the efficiency for Hash table search

A

Time complexity: Space Complexity:
Best: O(1) O(1)
Average: O(1)
Worst: O(n)

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

What is the efficiency for Linear search

A

Time complexity: Space Complexity:
Best: O(1) O(1)
Average: O(n)
Worst: O(n)

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

How does Bubble sort work

A

It works by comparing each item with the next item, swapping them if they are out of order.

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

What is a pass

A

Comparing an item with its neighbour until the end of the data set

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

What is the efficiency Bubble sort

A

Time complexity: Space Complexity:
Best: O(n) O(1)
Average: O(n^2)
Worst: O(n^2)

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

What is the insertion sort

A

Comparing an item with the previously placed items and putting it in the correct position. This is good for small data set

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

What is the efficiency of insertion sort

A

Time complexity: Space Complexity:
Best: O(n) O(1)
Average: O(n^2)
Worst: O(n^2)

17
Q

What is Merge sort

A

A sort that uses divide and conquer. It repeatedly splits the data set in half until each item is in its own list. Then adjacent lists are merged together with each list being put back in the right order

18
Q

What is the efficiency of merge sort

A

Time complexity: Space Complexity:
Best: O(n log n) O(n)
Average: O(n log n)
Worst: O(n log n)

19
Q

What does ‘Divide and Conquer’ mean

A

Create two or more sub-problems from the larger problem, then solve individually before combining to solve the bigger problem

20
Q

What is Quicksort

A

Quicksort works by using divide and conquer. This happens by using pointers to compare two items then swapping if they are in the wrong place one pointer stays where its is and the other pointer moves one more to the middle. this happens until there is an item of data set in stone (pivot) then the sort repeats simultaneously with the lists either side of the pivot until all items are sorted

21
Q

What is the efficiency of Quicksort

A

Time complexity: Space Complexity:
Best: O(n log n) O(log n)
Average: O(n log n)
Worst: O(n^2)

22
Q

What is an Optimisation Algorithm

A

Routes that find optimal paths between vertices on a graph