Y1 Decision - C4 - Route Inspection Flashcards

1
Q

4.1 What is an Eulerian graph?

A

A network that contains a trail that includes every edge and starts and finishes at the same vertex. Any connected graph whose vertices are all even is Eulerian.

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

4.1 What is a semi-Eulerian graph?

A

A network that contains a trail that includes every edge and starts and finishes at the same vertex. Any connected graph with two odd vertices is semi-Eulerian (one odd vertex is the start and the other is the end of the trail)

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

4.2 What does the route inspection algorithm do?

A

Finds the length of the shortest route in a network that transverses every 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
4
Q

4.2 If a network is Eulerian, what can you say about the length of its shortest route that transverses every arc?

A

length of the shortest route = total weight of the network

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

4.2 If a network is semi-Eulerian, what can you say about the length of its shortest route that transverses every arc?

A

length of the shortest route = total weight of the network plus the length of the shortest path between the two odd vertices

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

4.2 Describe how to implement the route inspection algorithm

A
  • Identify any odd vertices
  • Consider all possible pairings of these pairings
  • Select the complete pairing that has the least sum
  • Add a repeat of the arcs indicated by this pairing to the network
How well did you know this?
1
Not at all
2
3
4
5
Perfectly