ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

159 results

Glass Box Computing
What Is a Graph? — Data Structures in C | 14.2

A plain, precise definition of a graph — and the one idea everything else follows from. We define it exactly, picture it, and pull out ...

10:11
What Is a Graph? — Data Structures in C | 14.2

0 views

3 days ago

Glass Box Computing
Graph Traversal: Common Mistakes — Data Structures in C | 15.10

The bugs people actually hit with graph traversal — shown, explained, and fixed. A gallery of real mistakes: what they look like, ...

3:26
Graph Traversal: Common Mistakes — Data Structures in C | 15.10

0 views

3 days ago

Glass Box Computing
Graph Representations: Complexity — Data Structures in C | 14.8

The cost of every graph representation operation in one place — big-O, and the traps that bite in practice. We build the complexity ...

3:51
Graph Representations: Complexity — Data Structures in C | 14.8

0 views

3 days ago

Glass Box Computing
Graph Algorithms: Common Mistakes — Data Structures in C | 16.8

The bugs people actually hit with graph algorithms — shown, explained, and fixed. A gallery of real mistakes: what they look like, ...

1:49
Graph Algorithms: Common Mistakes — Data Structures in C | 16.8

0 views

3 days ago

Glass Box Computing
A Graph in Memory — Data Structures in C | 14.5

How graph representations actually live in memory — the byte-level layout behind the abstraction. We map the abstract picture ...

5:53
A Graph in Memory — Data Structures in C | 14.5

1 view

3 days ago

Glass Box Computing
Graph Traversal: Invariants — Data Structures in C | 15.4

The invariants of graph traversal: the facts that must stay true after every operation. We state each invariant plainly and show how ...

1:16
Graph Traversal: Invariants — Data Structures in C | 15.4

0 views

3 days ago

Glass Box Computing
Graph Invariants — Data Structures in C | 14.4

The invariants of graph representations: the facts that must stay true after every operation. We state each invariant plainly and ...

1:02
Graph Invariants — Data Structures in C | 14.4

0 views

3 days ago

Glass Box Computing
Graph Algorithms: Invariants — Data Structures in C | 16.4

The invariants of graph algorithms: the facts that must stay true after every operation. We state each invariant plainly and show ...

1:46
Graph Algorithms: Invariants — Data Structures in C | 16.4

0 views

3 days ago

Glass Box Computing
Graph Algorithms: Labs — Data Structures in C | 16.10

Practice with graph algorithms: work the problems yourself, then check the worked solutions. Hands-on exercises to turn ...

5:56
Graph Algorithms: Labs — Data Structures in C | 16.10

2 views

3 days ago

Glass Box Computing
Why Graph Traversal? — Data Structures in C | 15.1

Before the how, the why: what problem graph traversal solves, and what it costs you to get it wrong. We start from a concrete ...

4:34
Why Graph Traversal? — Data Structures in C | 15.1

3 views

3 days ago

Glass Box Computing
Graph Representations: Common Mistakes — Data Structures in C | 14.9

The bugs people actually hit with graph representations — shown, explained, and fixed. A gallery of real mistakes: what they look ...

2:47
Graph Representations: Common Mistakes — Data Structures in C | 14.9

4 views

3 days ago

Glass Box Computing
Graph Algorithms: Operations — Data Structures in C | 16.6

Graph Algorithms in action: each core operation walked step by step — the idea, the code, and the cost. We take the operations ...

37:02
Graph Algorithms: Operations — Data Structures in C | 16.6

3 views

3 days ago

Glass Box Computing
Graph Traversal in Memory — Data Structures in C | 15.5

How graph traversal actually lives in memory — the byte-level layout behind the abstraction. We map the abstract picture onto real ...

3:13
Graph Traversal in Memory — Data Structures in C | 15.5

7 views

3 days ago

Glass Box Computing
Graph Traversal: Wrap-up — Data Structures in C | 15.12

A tight recap of graph traversal: the mental model, the operations, and the costs — everything worth keeping. The essential ...

1:39
Graph Traversal: Wrap-up — Data Structures in C | 15.12

0 views

3 days ago

Glass Box Computing
Graph Representations: Add an Edge — Data Structures in C | 14.6

Adding one undirected edge in both representations — and the bug that quietly turns an undirected graph into a directed one.

3:27
Graph Representations: Add an Edge — Data Structures in C | 14.6

0 views

3 days ago

Glass Box Computing
Graph Traversal: BFS — Data Structures in C | 15.6

Breadth-first search explores like a ripple on a pond: everything one step away, then everything two steps away. We take BFS at ...

10:48
Graph Traversal: BFS — Data Structures in C | 15.6

4 views

3 days ago

Glass Box Computing
Graph Algorithms: The Problem Contracts — Data Structures in C | 16.3

The contract behind graph algorithms: what you must guarantee going in, and what you can count on coming out. We state the ...

1:23
Graph Algorithms: The Problem Contracts — Data Structures in C | 16.3

0 views

3 days ago

Glass Box Computing
Graph Traversal: DFS (Iterative) — Data Structures in C | 15.8

The same depth-first walk with an explicit stack instead of recursion — including the two things recursion was quietly doing for you ...

6:04
Graph Traversal: DFS (Iterative) — Data Structures in C | 15.8

0 views

3 days ago

Glass Box Computing
Graph Traversal: DFS (Recursive) — Data Structures in C | 15.7

Depth-first search plunges down one path until it dead-ends, then backs up: the cave, not the pond. We predict the discovery order ...

10:27
Graph Traversal: DFS (Recursive) — Data Structures in C | 15.7

0 views

3 days ago

Glass Box Computing
Graph Representations: Labs — Data Structures in C | 14.11

Practice with graph representations: work the problems yourself, then check the worked solutions. Hands-on exercises to turn ...

7:58
Graph Representations: Labs — Data Structures in C | 14.11

4 views

3 days ago