Algorithms Flashcards

1
Q

Graph Traversal

A
  • The process of visiting each vertex in a graph
  • Can be performed on any connected graph
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Depth First Search

A
  • A branch is fully explored before backtracking
  • Uses a stack
  • Used for navigating a maze
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Breadth First Search

A
  • A node is fully explored before venturing onto the next node
  • Uses a queue
  • Used for determining the shortest path on an unweighted graph
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Tree Traversal

A
  • The process of visiting each node in a tree
  • The algorithm must start at the root
  • Works anticlockwise
  • Uses Depth First Traversal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Pre-Order Traversal

A
  • Used for copying a tree
  • Can be performed on any tree
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

In-Order Traversal

A
  • Outputs the contents in ascending order
  • Is performed on binary trees
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Post-Order Traversal

A
  • Can be performed on any tree
  • Used to empty the tree
  • Used for infix to RPN conversions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Reverse Polish

A
  • A way of writing expressions
  • Uses postfix notation (operators are placed after operands)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Advantages of Reverse Polish

A
  • It eliminates the needs for brackets, simplifying expressions
  • Well suited for manipulation by a stack
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Searching Algorithm

A

Used to find a specified data item within a set of data

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

Linear Search

A
  • Can be conducted on any list
  • Inspects every item one by one until the desired item is found
  • Time complexity of O(N)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Binary Search

A
  • Only works on ordered lists
  • Takes the midpoint of a list and determines if the target is higher or lower
  • Time complexity of O(logN)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Sorting Algorithms

A

Used to put elements in an array into a specific order

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

Bubble Sort

A
  • Swaps adjacent items in an array until the array is in order
  • Has a time complexity of O(n^2)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Merge Sort

A
  • Divides an array into smaller arrays until each array contains just one element
  • Arrays are then remerged into an ordered array
  • Time complexity of O(nlogn)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Optimisation Algorithms

A

Finds the best possible solution to the problem posed

17
Q

Dijkstra’s Algorithm

A
  • Finds the shortest path from a starting node to every other node in a network
  • Uses a priority queue rather than a standard queue
18
Q

Uses of Dijkstra’s Algorithm

A
  • Satellite navigation systems
  • Routers