Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
711 results
A comprehensive Data Structures and Algorithms (DSA) tutorial designed to help learners build efficient software and succeed in ...
0 views
2 days ago
Before the how, the why: what problem sorting and searching solve, and what it costs you to get them wrong. We start from a ...
Practice with graph representations: work the problems yourself, then check the worked solutions. Hands-on exercises to turn ...
4 views
A plain, precise definition of a graph — and the one idea everything else follows from. We define it exactly, picture it, and pull out ...
How graph representations actually live in memory — the byte-level layout behind the abstraction. We map the abstract picture ...
1 view
Before the how, the why: what problem graph traversal solves, and what it costs you to get it wrong. We start from a concrete ...
3 views
Before the how, the why: what problem graph representations solve, and what it costs you to get them wrong. We start from a ...
Practice with graph algorithms: work the problems yourself, then check the worked solutions. Hands-on exercises to turn ...
2 views
Before the how, the why: what problem tries solve, and what it costs you to get them wrong. We start from a concrete problem, ...
16 views
How graph algorithms actually live in memory — the byte-level layout behind the abstraction. We map the abstract picture onto ...
Practice with graph traversal: work the problems yourself, then check the worked solutions. Hands-on exercises to turn ...
A tight recap of searching: the mental model, the operations, and the costs — everything worth keeping. The essential takeaways ...
Quicksort, end to end: how it sorts, why it's correct, and what it costs. We watch the algorithm run on a real array, then write it in C ...
Before the how, the why: what problem graph algorithms solve, and what it costs you to get them wrong. We start from a concrete ...
We walk the operation one move at a time, watch it in memory, write it in C, and work out its cost. What you'll learn: • How insertion ...
Prefix Sums: build and query — how it works, step by step, with a memory diagram and real C code. We build it up from the idea, ...
Before the how, the why: what problem range query structures solve, and what it costs you to get them wrong. We start from a ...
Depth-first search plunges down one path until it dead-ends, then backs up: the cave, not the pond. We predict the discovery order ...
Learn Bubble Sort in C Programming with a simple and easy-to-understand explanation. In this video, we understand how the ...
36 views
6 days ago
The same depth-first walk with an explicit stack instead of recursion — including the two things recursion was quietly doing for you ...