Graph Theory Flashcards

1
Q

Kruskal’s Algorithm

A

start from smallest weight and continue with smallest weights

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

Minimal Spanning Tree

A

spanning tree with smallest total weight

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

Nearest-Neighbor Algorithm

A

1) start with any vertex
2) find the vertex that is closest to the previous vertex and visit it
3) make sure that a vertex is not visited more than once

-in general, does not provide optimal solution

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

Circuit

A

path with same initial and final point

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

Euler Circuit

A

all edges are visited exactly once

-each vertex has even degrees

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

Degree

A

number of edges touching one point

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

Euler’s Theorem

A

a connected graph has a Euler circuit provided all its vertices has even degrees

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

Hamilton Circuit

A

each vertex is visited exactly once

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

Hamilton Circuit Formula

A

(n-1)!

n = number of vertices

the number of distinct Hamiltonian circuits in a complete graph with “n” vertices

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

Complete Graph

A

all vertices are connected by an edge

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

TSP

A

Traveling Salesman Problem

visit each vertex exactly once and end up where he started

Hamilton Circuit

in general, no solution unless it is a complete graph

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

Euler’s Formula

A

V-E+F=2

any connected graph

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

Regular Solid

Platonic Solid

A

3D shape satisfying each face is the same regular polygon

same number of polygons meet each vertex

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

Platonic Solids (5)

A

Vertices Edges Faces

1) Tetrahedron 4 6 4
2) Octahedron 6 12 8
3) Hexahedron 8 12 6
4) Dodecahedron 20 30 12
5) Icosahedron 12 30 20

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

Planar Graph

A

a graph that can be redrawn so no edges touch each other

not possible if k5 or k3,3

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

Tree

A

connected graph with no circuits

17
Q

Relationship Between Number of Vertices and Edges in a Tree

A

E = V - 1

18
Q

Spanning Tree

A

subgraph with the same number of vertices as the original graph (does not need to have the same number of edges)

cannot make a circuit