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
252 results
Build an intuitive mental model of core data structures and algorithms using relatable, real-world analogies. Topics range from ...
95,175 views
6 days ago
... structures introduction to data structures and algorithms introduction to data structures playlist introduction to data structures in c ...
2 views
36 minutes ago
The cost of every graph algorithm operation in one place — big-O, and the traps that bite in practice. We build the complexity table ...
1 view
5 days ago
Graph Algorithms in action: each core operation walked step by step — the idea, the code, and the cost. We take the operations ...
4 views
Three ideas hold this chapter together: relaxation, spanning trees and topological order. Before any single algorithm, we name the ...
0 views
A tight recap of searching: the mental model, the operations, and the costs — everything worth keeping. The essential takeaways ...
The bugs people actually hit with graph algorithms — shown, explained, and fixed. A gallery of real mistakes: what they look like, ...
Before the how, the why: what problem sorting and searching solve, and what it costs you to get them wrong. We start from a ...
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 ...
The bugs people actually hit with graph traversal — shown, explained, and fixed. A gallery of real mistakes: what they look like, ...
When to reach for graph algorithms — and when not to. The design tradeoffs, side by side. We compare graph algorithms against ...
The cost of sorting and searching, operation by operation — big-O, and the traps that bite in practice. We build the complexity ...
Searching on tries — finding an element, and how many places you have to look. This lesson shows exactly what happens, step ...
24 views
The same depth-first walk with an explicit stack instead of recursion — including the two things recursion was quietly doing for you ...
The bugs people actually hit with graph representations — shown, explained, and fixed. A gallery of real mistakes: what they look ...
Practice with graph algorithms: work the problems yourself, then check the worked solutions. Hands-on exercises to turn ...
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 ...
How graph algorithms actually live in memory — the byte-level layout behind the abstraction. We map the abstract picture onto ...
Adding one undirected edge in both representations — and the bug that quietly turns an undirected graph into a directed one.
The bugs people actually hit with tries — shown, explained, and fixed. A gallery of real mistakes: what they look like, why they ...