Graphs-Exploring-Connections (1)

Published on
Embed video
Share video
Ask about this video

Scene 1 (0s)

Graphs:. Graphs are powerful data structures that represent relationships between entities..

Scene 2 (11s)

a. b. What is a Graph (G)?. A graph is a visual representation of relationships..

Scene 3 (32s)

Graph Terminology. Nodes. Represent entities or objects..

Scene 4 (49s)

Graph Types. Undirected Graphs. Relationships are bidirectional..

Scene 5 (1m 2s)

Graph Types. Directed Graphs. Relationships flow in one direction..

Scene 6 (1m 15s)

7. 5. 2. 3. 4. Graph Types. Weighted Graphs. Edges have associated values..

Scene 7 (1m 30s)

Graph Representation Methods. Adjacency Matrix. Square matrix storing connections..

Scene 8 (1m 41s)

Adjacency Matrix. O 1 1 O 1 1 O 1 O O 1 1 O 1 O O O 1 O 1 1 O O 1 O.

Scene 9 (3m 16s)

Adjacency Matrix. a. c. d. e. b. 3. 4. 7. 5. 2. ♾️ 7 6 ♾️ 4 7 ♾️ 5 ♾️ ♾️ 6 5 ♾️ 2 ♾️ ♾️ ♾️ 2 ♾️ 3 4 ♾️ ♾️ 3 ♾️.

Scene 10 (3m 30s)

Graph Representation Methods. Adjacency List. List of nodes and their neighbors..

Scene 11 (3m 41s)

Adjacency List. a. c. d. e. b. a b c d e. b c e. a c.

Scene 12 (3m 53s)

Adjacency List. b 7 c 6 e 4. a. c. d. e. b. 3. 4.

Scene 13 (4m 7s)

To find if an edge exists. Adjacency Matrix. Adjacency List.

Scene 14 (4m 22s)

- Small or Sparse. - Very big or Dence. Space Required.

Scene 15 (4m 32s)

Traverse the Graph. Adjacency Matrix. Adjacency List.

Scene 16 (4m 41s)

Exploring Graph Traversal. Depth-First Search (DFS).

Scene 17 (4m 59s)

Graph Applications. [image] Image 0. Social Networks.

Scene 18 (5m 13s)

[image] Image 0. Thank You!. Explore the Connections.