4. Route Inspection Flashcards

1
Q

Define the term Eulerian graph/network

A

One which contains a trail that includes every edge and starts and finishes at the same vertex (called an Eulerian circuit)

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

When is a graph Eulerian?

A

When the graph is connected and the graph’s vertices are all even

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

Define the term semi-Eulerian graph/network

A

One which contains a trail that includes every edge but starts and finishes at different vertices

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

When is a graph semi-Eulerian?

A

When the graph is connected and exactly two vertices are odd

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

What is the route inspection algorithm used for?

A

Finding the shortest route in a network that traverses 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
6
Q

If all the vertices in a network have an even degree, what is the length of the shortest route?

A

The total weight of the network

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

If a network has exactly 2 odd vertices, what is the length of the shortest route?

A

The 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
8
Q

If a network has more than two odd vertices, what do you do?

A

Consider all the possible pairings of the odd vertices

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

What are the steps to the route inspection algorithm?

A
  1. Identify any vertices with an odd degree
  2. Consider all possible complete pairings of these vertices
  3. Select the complete pairing that has the least sum
  4. 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