Graphs & Networks

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/35

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

36 Terms

1
New cards

Graph

A collection of vertices connected by edges; used to model pairwise relationships.

2
New cards

Vertex (Node)

A point or location in a graph.

3
New cards

Edge (Arc)

A line connecting two vertices, representing a relationship.

4
New cards

Loop

An edge that connects a vertex to itself.

5
New cards

Multiple Edges

Two or more edges connecting the same pair of vertices.

6
New cards

Degree of a Vertex

The number of edges connected to a vertex (loops count as two).

7
New cards

Adjacent Vertices

Vertices directly connected by an edge.

8
New cards

Simple Graph

A graph with no loops or multiple edges.

9
New cards

Connected Graph

A graph where there is a path between every pair of vertices.

10
New cards

Disconnected Graph

A graph with at least one pair of vertices not connected by a path.

11
New cards

Complete Graph (Kₙ)

A graph where every pair of distinct vertices is connected by a unique edge.

12
New cards

Subgraph

A graph formed from a subset of vertices and edges of another graph.

13
New cards

Complement of a Graph

A graph with all edges between non-adjacent vertices of the original graph.

14
New cards

Weighted Graph

A graph where each edge has a numerical value (e.g., cost or distance).

15
New cards

Directed Graph (Digraph)

A graph where edges have direction, shown by arrows.

16
New cards

Undirected Graph

A graph where edges have no direction.

17
New cards

Path

A sequence of distinct vertices connected by edges.

18
New cards

Walk

A sequence of vertices connected by edges; vertices and edges may repeat.

19
New cards

Trail

A walk with no repeated edges.

20
New cards

Circuit

A trail that starts and ends at the same vertex.

21
New cards

Cycle

A circuit with no repeated vertices except the first/last.

22
New cards

Eulerian Trail

A trail that uses every edge exactly once.

23
New cards

Eulerian Circuit

A closed Eulerian trail—uses every edge once and starts/ends at the same vertex.

24
New cards

Eulerian Graph

A graph with an Eulerian circuit; all vertices have even degree.

25
New cards

Semi-Eulerian Graph

A graph with an Eulerian trail but not a circuit; exactly two vertices have odd degree.

26
New cards

Hamiltonian Path

A path that visits every vertex exactly once.

27
New cards

Hamiltonian Cycle

A Hamiltonian path that starts and ends at the same vertex.

28
New cards

Planar Graph

A graph that can be drawn without any edges crossing.

29
New cards

Face (Region)

An area bounded by edges in a planar graph (including the outer region).

30
New cards

Bridge

An edge whose removal increases the number of disconnected parts.

31
New cards

Tree

A connected graph with no cycles.

32
New cards

Spanning Tree

A subgraph that includes all vertices and is a tree.

33
New cards

Minimum Spanning Tree (MST)

A spanning tree with the smallest possible total edge weight.

34
New cards

Kruskal’s Algorithm

Builds an MST by adding the smallest edges one by one, avoiding cycles.

35
New cards

Prim’s Algorithm

Builds an MST by starting at a vertex and adding the smallest edge to a new vertex.

36
New cards

Network

A graph with weighted edges, modeling systems like roads or communication.