4 - Route inspection Flashcards

1
Q

Define a Eulerian graph.

A

A graph which contains a trail that includes every edge and starts and finished at the same vertex. This is an Eulerian circuit. 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

Define a semi-Eulerian graph.

A

A graph which contains a trail that includes every edge but start and finished at different vertices. Any connected graph with exactly two odd vertices is semi-Eulerian.

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

In what case, is the length of the shortest route equal to the the total weight of the network.?

A

If all vertices are even. (A Eulerian graph.)

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

What does the route inspection (Chinese postman) algorithm seek to do?

A

Find 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
5
Q

What is the length of the shortest route which covers every arc equal to, when there are exactly 2 odd nodes?

A

Total weight of network + shortest route between two odd nodes

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

Describe the route inspection algorithm.

A
  1. Identify all nodes with odd degree
  2. Consider all possible complete pairings of these nodes
  3. Select complete pairing that has the smallest 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