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
70 results
a simple hashtable coded in C, with insert, delete and lookup. It has no collision management code. In the future videos, we may ...
19 views
6 days ago
DESCRIPTION* Not all hash functions are created equal — a bad one turns your O(1) hash table into an O(N) linked list in ...
24 views
21 hours ago
Before the how, the why: what problem tries solve, and what it costs you to get them wrong. We start from a concrete problem, ...
15 views
That is, the hash function is ℎ(k,i)=(ℎ_1 (k)+i)mod m for i = 0, 1, …, m − 1. To view quadratic probing as a special case of ...
20 views
4 days ago
To determine which slots to probe, the hash function includes the probe number i (starting from 0) as a second input. Thus, the ...
23 views
5 days ago
Three strings. All unreadable. All completely different — and mixing them up is how databases end up on breach forums. This is ...
40 views
3 days ago
HASHING Hash Functions, Hash Tables, Load Factor, Collisions, Chaining, Open Addressing, Linear Probing, Quadratic Probing, ...
13 views
Ok, the good news is that we don't need to understand the math behind how this works. You just have to learn the cause and ...
11 views
... COLLISION IN HASHING A collision occurs when two or more different keys produce the same index using the hash function.
12 views
In this video, we solve LeetCode 36 — Valid Sudoku, a classic hashing and matrix validation problem. The goal is not to solve the ...
4 views
Build and verify a spatial hash grid for fast neighbor queries in Unreal Engine 5 C++. Learn how TMap buckets with FIntPoint keys ...
9 views
Learn how to find the common elements between two arrays without duplicates using an efficient Hashing or Set approach.
3 views
Learn how to count pairs in an array whose absolute difference equals a given value using an efficient Hashing approach.
2 views
systemdesign #databases #backend Adding read replicas doesn't make writes faster — every replica carries the full write stream.
17 views
2 days ago
Learn how to count pairs in an array whose absolute difference is equal to a given value using an efficient Hashing approach.
0 views
Full written walkthrough (with drill card): https://systemdr.systemdrd.com/p/consistent-hashing-why-it-matters Get all 52 FAANG ...
56 views
Welcome to Day 19 of our 28-Day C & C++ Masterclass! Yesterday, we explored file handling in C and learned how programs can ...
In today's session, we are deep-diving into a classic grid-based problem: LeetCode 2965 (Find Missing and Repeated Values).
Master the Smallest Missing Multiple of K LeetCode problem with this step-by-step visual tutorial! We explain how to find the ...
423 views