Graph Theory Flashcards

1
Q

What is an edge?

A

Lines

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

What is vertices/nodes?

A

Dots

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

What is a Loop?

A

An edge that joins a vertex to itself

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

Pendant

A

Degree 1 vertex

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

What is a Walk?

A

A sequence of vertices and edges
where BOTH CAN be repeated

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

What is a Path?

A

A sequence of vertices and edges
where BOTH CANNOT be repeated

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

What is a Trail?

A

A walk
where EDGE CANNOT be repeated

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

What is a Circuit?

A

A closed trail

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

What is a Cycle?

A

A closed path

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

What is an Eulerian Path?

A

A path that uses EACH EDGE EXACTLY once

*graph is traversable only if this path exists

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

How to check for Eulerian Path?

A

The graph has 0 or 2 vertices of odd degree.

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

What is an Eulerian Circuit?

A

Graph contains CLOSED Eulerian Path

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

How to check for Eulerian Circuit?

A

All vertices to have EVEN degree

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

What is a Hamiltonian Path?

A

A path that visits EACH VERTEX EXACTLY once

also known as traceable path

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

What is a Hamiltonian Cycle?

A

A closed Hamiltonian Path

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

What is Dijkstra’s Algorithm used for?

A

Find shortest distance from vertex ‘a’ to every other vertex