Graph Theory

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

1/18

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.

19 Terms

1
New cards

Vertices

Also known as nodes, they are the fundamental units of graphs that represent entities.

2
New cards

Edges

Connections between vertices in a graph, representing relationships between them.

3
New cards

Directed Graph (Digraph)

A graph where edges have a direction, indicating a one-way relationship from one vertex to another.

4
New cards

Undirected Graph

A graph where edges do not have a direction and represent a bidirectional relationship between vertices.

5
New cards

Bipartite Graph

A graph where the vertices can be divided into two disjoint sets such that every edge connects a vertex from one set to a vertex in the other set.

6
New cards

Eulerian Circuit

A walk in a graph that visits every edge exactly once and returns to the starting vertex.

7
New cards

Hamiltonian Cycle

A cycle in a graph that visits every vertex exactly once and returns to the starting vertex.

8
New cards

Adjacency List

A representation of a graph where each vertex has a list of adjacent vertices, compactly representing sparse graphs.

9
New cards

Adjacency Matrix

A 2D matrix representation of a graph where rows and columns represent vertices, and entries indicate the presence of edges.

10
New cards

Degree of a Vertex

The number of edges incident to a vertex in a graph.

11
New cards

Simple Graph

An undirected graph that has no loops and no more than one edge between any pair of vertices.

m <= n(n-1) /2

12
New cards

Complete Graph

A simple graph in which there is an edge between every pair of distinct vertices.

13
New cards

Path

A walk in a graph where all vertices are distinct.

14
New cards

Circuit

A closed walk with all edges distinct, meaning it begins and ends at the same vertex but does not repeat any edge.

15
New cards

Cycle

A circuit where all vertices are distinct, meaning it starts and ends at the same vertex without repeating any vertex.

16
New cards

Connected Graph

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

17
New cards

Spanning Tree

A subgraph that is a tree and contains all the vertices of the original graph.

18
New cards

Weighted Graph

A graph where edges have weights, often representing costs or distances.

19
New cards

Adjacency

when two vertices share the same edge