Chapter 5 Flashcards

1
Q

Define tour

A

walk visiting every node and returns back to starting node

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

Classical TSM problem

A

each node visited exactly once before returning to start

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

Practical TSM problem

A

each node visited at least once before returning to start

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

Outline using MST to find UB

A
  1. Find MST of network and double
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Outline using RMST to find LB

A

CLASSICAL ONLY
1. Remove node and attached arcs
2. Find RMST
3. add connecting weight of removed node

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

Outline nearest neighbour algorithm

A
  1. select any node
  2. go to nearest node that hasn’t been visited
  3. repeat till complete
How well did you know this?
1
Not at all
2
3
4
5
Perfectly