D1 Flashcards

1
Q

SIMPLE

A

A graph is simple if it has no loops and at most one edge connecting any pair of vertices

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

CONNECTED

A

Where all vertices are connected together directly or indirectly

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

COMPLETE

A

Every vertex is connected to every other vertex.

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

PLANAR

A

A graph that can be drawn so that none of the arcs cross.

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

HAMILTONIAN CYCLE

A

A cycle that visits every vertex of a graph exactly once and returns to the start vertex.

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

How many Hamiltonian cycles does a complete graph with n vertices have? Give your answer in terms of n

A

(n-1)! / 2

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

EULERIAN TRAILS

A

Covers every edge of the graph exactly once and finishes at the start vertex. Has all even vertices.

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

SEMI-EULERIAN

A

has only 2 odd orders and the rest are even.

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

TRAVERSABLE

A

A graph that can be drawn without taking the pen off the paper and without repeating any edges.

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

What does KRUSKAL’s algorithm do?

A

Minimum spanning tree

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

What does PRIM’s algorithm do?

A

Minimum spanning tree

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

What does DIJKSTRA’s algorithm do?

A

Shortest path in a network

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

CHINESE POSTMAN?

A

Shortest possible path via all the arcs and return to start. (May have to repeat some edges).

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

ISOMORPHIC

A

Graphs with the same vertices

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