Route inspection Flashcards

1
Q

What is a Eulerian graph?

A

A graph in which all vertices have an even degree

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

What is a semi-Eulerian graph?

A

A graph in which precisely two vertices are of odd degree

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

What does it mean for a graph to be traversable?

A

It is possible to travel along every edge just once without skipping over any sections

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

When is a graph traversable?

A

When it is a Eulerian graph

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

When is a graph semi-traversible?

A

When it is a semi-Eulerian graph

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

When is a graph not traversible?

A

When it has more than two vertices of odd degree

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

What can be said about the number of vertices of odd degree in any graph?

A

It is always even

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

What is a Eulerian walk?

A

A walk which uses each edge exactly once

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

What is a Eulerian cycle?

A

A cycle which uses each edge exactly once

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

What does the Chinese postman algorithm do?

A

It finds the shortest route that traverses every edge at least once and returns to the starting vertex, by transforming the graph into an Eulerian graph if necessary

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

Explain the Chinese postman algorithm

A

If the graph is Eulerian already then no further action is necessary, and the shortest route’s weight is equal to the network’s total weight. Otherwise, for each combination of pairings of the odd vertices, the total weight of the minimum paths between each pairing is calculated. The combination with the lowest total weight has its edges repeated, thus making the graph Eulerian

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