Chapter 3 - The travelling salesman problem Flashcards

1
Q

What is a walk?

A

A finite sequence of edges such that the end vertex of one edge us the start vertex of the next

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

What is a tour?

A

A walk which visits every vertex, returning to it’s starting vertex

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

What is a classical problem?

A

An tour which visit each vertex only once

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

What is a practical problem?

A

An tour which visits each vertex at least once

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

How do you find the minimum spanning tree (MST)?

A

With either Prim’s algorithm or Kruskal’s algorithm

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

How do you find the upper bound with a MST?

A

MST x 2 = Initial upper bound,

Then seek ‘short cuts’

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

How do you find the lower bound?

A

1) Remove a vertex
2) Find the residual minimum spanning tree (RMST)
3) Add the two shortest arcs to the deleted vertex

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

What methods do you use to find the upper bound?

A
  • Using a MST

- Use the nearest neighbour algorithm

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