Route Inspection Flashcards

1
Q

Eulerian Graph

A

A connected graph where all the orders are even

Traversable

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

Semi-Eulerian graph

A

A connected graph where exactly 2 orders are odd

Semi-traversable

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

Traversable

A

A graph in which it is possible to travel along every arc just once, returning to the start node and without taking your pen off the paper

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

When is a graph not traversable?

A

If it has more than 2 nodes with odd degree

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

Route inspection problem

A

Can be used to find the shortest route in a network that traverses each arc at least once and returns to its starting point

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

Route inspection problem Eulerian

A

The weight of the network

Sum each arc’s weight, noting each down

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

Route inspection problem semi-Eulerian

A

The weight of the network plus the length of the shortest route between the two odd nodes

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

Route inspection algorithm

A
  1. Write down any vertices with odd degree
  2. Write down all possible combinations of vertex pairs
  3. Write down the shortest route between each pair and sum to find for the combination
  4. Write down the arcs in the combination with the smallest sum and add to the network
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What to remember if an arc is removed

A

To take that away from the total length as well as adding the arcs traversed twice

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

What happens if you are given 2 possible end nodes?

A

Write out all the possible combinations of pairings from each

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