ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

232 results

CodeWithJalandhar
Max Heap & Min Heap Explained in One Video | Priority Queue | Heap Data Structure Tutorial

Master Heap Data Structure in just one video! In this tutorial, we cover Max Heap, Min Heap, Heap Operations, Priority Queue, ...

32:00
Max Heap & Min Heap Explained in One Video | Priority Queue | Heap Data Structure Tutorial

53 views

2 weeks ago

LearnThatStack
Memory Explained  - Why Your Code Crashes (Stack vs Heap)

Ever passed a list to a function and it changed without you touching it? That's not a bug — that's how memory works. In this video, I ...

5:45
Memory Explained - Why Your Code Crashes (Stack vs Heap)

6,585 views

2 weeks ago

FullStack Tau
Do you even know Stack and how it works internally ?

In this video we take a look at the Stack, which sometimes is called Hardware Stack, Call Stack, Program Stack. A data structure ...

15:37
Do you even know Stack and how it works internally ?

54 views

7 days ago

The Engineers' Pitstop
Stack vs Heap: The Core Difference Explained

Stack vs heap explained simply. In this video, you'll learn the difference between stack and heap memory, how stack memory ...

2:27
Stack vs Heap: The Core Difference Explained

428 views

3 weeks ago

PhantomFeed
Python Data Structures and Collections Guide #pythonprogramming #python #ai #collection #coding

A comprehensive technical guide for mastering Python data structures and their practical applications. It categorizes various tools, ...

6:41
Python Data Structures and Collections Guide #pythonprogramming #python #ai #collection #coding

0 views

8 days ago

Akshay Gupta DSA
Heaps Implementation and examples

Sort an Array - https://leetcode.com/problems/sort-an-array/description/ Solution ...

58:48
Heaps Implementation and examples

26 views

2 weeks ago

TATHYAM
How Python Lists Are Stored in Memory | Python Internals Explained

Python #PythonProgramming #PythonLists #DataScience In this video, we dive deep into what really happens when you create a ...

23:01
How Python Lists Are Stored in Memory | Python Internals Explained

0 views

8 days ago

Daily Dose Of LeetCode
Why Two Heaps Are Needed | 2402. Meeting Rooms III | LeetCode Daily

LeetCode Daily Problem 2402 – Meeting Rooms III (Hard) | Solution Walkthrough | Daily Dose of LeetCode Meeting Rooms 3 ...

40:53
Why Two Heaps Are Needed | 2402. Meeting Rooms III | LeetCode Daily

63 views

13 days ago

Leetcode Unlocked
215. Kth Largest Element in an Array | Leetcode Unlocked - Python

In this video, we tackle LeetCode 215: Kth Largest Element in an Array. While using a standard sort is the easy way out, top tech ...

9:04
215. Kth Largest Element in an Array | Leetcode Unlocked - Python

19 views

2 weeks ago

Pattern Mastery
[Python] Find Median from Data Stream - Leetcode 295 -- Illustrated! | Pattern Mastery

Find Median from Data Stream - Leetcode 295 - Illustrated! - FAANG - Heap - Python (Pattern Mastery) #PatternMastery ...

9:57
[Python] Find Median from Data Stream - Leetcode 295 -- Illustrated! | Pattern Mastery

1 view

2 weeks ago

AI Guy | Average IT Guy
Heap Data Structure from Beginning 🔥 | Heap Basics in Hindi| DSA

Is video mein hum Heap Data Structure ko bilkul basic se samjhenge — agar aap DSA beginner ho ya confused ho heap kya hota ...

36:47
Heap Data Structure from Beginning 🔥 | Heap Basics in Hindi| DSA

24 views

10 days ago

CodeStrat
Heap - Intro (1)
7:29
Heap - Intro (1)

0 views

2 weeks ago

WIBYTE
3. Applying Heaps: Heapsort code using heapq module

We develop the code for a non in-place Heapsort using the heapq module in Python. For more details, please take a look at ...

3:25
3. Applying Heaps: Heapsort code using heapq module

3 views

4 weeks ago

CodeWithJalandhar
Heapify Explained in One Video | Build Heap | Max-Heapify & Min-Heapify

Learn Heapify Operation in the simplest and clearest way! This video covers Max-Heapify, Min-Heapify, Build-Heap, and the ...

5:31
Heapify Explained in One Video | Build Heap | Max-Heapify & Min-Heapify

0 views

2 weeks ago

CWBH
Mastering Max Heaps: Efficiency in Priority Queues

Data Structures mein 'Max Heap' ek powerful concept hai. Yeh ek complete binary tree hota hai jahan parent node ki value ...

25:35
Mastering Max Heaps: Efficiency in Priority Queues

20 views

10 days ago

James Peralta
Advent of Code 2025 Day 8

00:00:00 Intro and Problem Overview 00:03:43 Understanding the Playground Graph and Circuits 00:07:52 Minimum Spanning ...

1:12:58
Advent of Code 2025 Day 8

186 views

1 month ago

CodeStrat
Heap - Kth Smallest Element in an Array
7:16
Heap - Kth Smallest Element in an Array

0 views

2 weeks ago

NerdTeach
The Definitive DSA Mastery Roadmap | Data Structures & Algorithms Framework

In this tutorial, we explore the **Definitive DSA Mastery Roadmap and Framework**, designed to help you achieve true ...

7:24
The Definitive DSA Mastery Roadmap | Data Structures & Algorithms Framework

6 views

3 weeks ago

Pattern Mastery
[Python] Top K Frequent Elements - Leetcode 347 -- Illustrated! | Pattern Mastery

Top K Frequent Elements - Leetcode 347 - Illustrated! - FAANG - Heap - Python (Pattern Mastery) #PatternMastery ...

8:03
[Python] Top K Frequent Elements - Leetcode 347 -- Illustrated! | Pattern Mastery

0 views

2 weeks ago

rohan lakhan
SECTION~D Python Data Structures

INTERNAL 2 DATA SCIENCE ASSIGNMENT.

14:52
SECTION~D Python Data Structures

0 views

13 days ago

Techdose
Maximize Happiness of Selected Children | Greedy | Heap | Sorting | Leetcode 3075

This video explains Maximize Happiness of Selected Children using greedy techniques and comparing possible options.

14:49
Maximize Happiness of Selected Children | Greedy | Heap | Sorting | Leetcode 3075

362 views

2 weeks ago

Engineering Community
Basic Algorithms and Data Structures with Go by Ivan Kutuzov

This talk highlight importance of knowing and use of basic algorithms and data structures, share some concepts and examples ...

55:47
Basic Algorithms and Data Structures with Go by Ivan Kutuzov

73 views

3 weeks ago

Orphen
Game Zero: implementing a priority queue

I implement a min heap in Jai to use as a priority queue in pathfinding algorithms in a game.

21:57
Game Zero: implementing a priority queue

23 views

7 days ago

WIBYTE
2. Applying Heaps: Understanding Heapsort with an example

Heapsort can be seen as a better/faster version of Selection sort. Just like selection sort, we keep finding the next smallest item ...

5:57
2. Applying Heaps: Understanding Heapsort with an example

6 views

4 weeks ago

WIBYTE
10. Applying Heaps: The code to keeping track of top K scores using heappushpop

We look at the code for keeping track of the top K scores. We use the heappushpop function for this purpose which provides and ...

8:06
10. Applying Heaps: The code to keeping track of top K scores using heappushpop

3 views

3 weeks ago