4 - Route Inspection Flashcards

1
Q

Define Eulerian graph/network.

A

Has a trail that contains every edge and starts and finishes at the same vertex - all vertices of even degree.

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

Define Eulerian circuit.

A

Trail of an Eulerian graph.

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

Define semi-Eulerian graph/network.

A

Has a trail including every edge but starts and finishes at different vertices - two vertices of odd degree.

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

What if the graph is not connected/has more odd vertices?

A

Not Eulerian.

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

What does the route inspection algorithm do?

A

Find shortest route which traverses each arc at least once and returns to starting point.

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

What is the length of the shortest route if all vertices are of even degree?

A

Total weight of network.

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

What is the length of the shortest route if two of the vertices are of odd degree?

A

Total weight plus length of shortest path between the two odd vertices.

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

What is the route inspection algorithm?

A

.Identify odd vertices.
.Consider all complete pairings of these.
.Select complete pairing with least sum.
.Add arcs indicated by this pairing to the network.

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