Route inspection Flashcards
1
Q
if you are given 4 odd node how many pairings are there
A
3 pairings
2
Q
State the edges that will need to be traversed twice
A
- correctly identify degree of nodes
- list the odd nodes
- check if starts/ finishes with nodes in list
- consider all possible pairings
(exclude start and finish if there) - choose pairings of least weight
- choose the pair of least of weight
- Traverse these arcs twice
3
Q
Note: if a graph starting node is odd and current finishing node is even.
How do we manipulate route inspection
A
We aim to make the finishing node odd
- so include this node in list
- consider pairings
- choose the pair of least weight
- Add to the original weight= new length
This would make the odd nodes even and the finishing even node odd.