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
96 results
This video helps to understand priorityqueue in java and internal working of it.
13 views
2w ago
In this video, we solve LeetCode 1046 - Last Stone Weight using the Heap (Priority Queue) data structure in Java. You'll learn: ...
31 views
Welcome Back to CodeByTushu! In today's video we solve: LeetCode 3286 — Find a Safe Walk Through a Grid This problem is ...
26 views
8d ago
PriorityQueue #BinaryHeap #Java #DataStructures #SystemDesign #CodingInterview #SDE3 #Heap #DSA #FootgunCode ...
7 views
6d ago
In this video, we'll solve the classic Minimum Cost of Ropes problem using the Greedy Algorithm and Priority Queue (Min Heap).
Priority Queues are one of the most powerful data structures in coding interviews and LeetCode. From Top K Elements to ...
19 views
3w ago
In this beginner-friendly video, you'll learn: ✓ What is Heap? ✓ Why Heap is called a Tree-Based Data Structure ✓ Min Heap ...
6 views
Priority Queue: Definition, creation, use
27 views
In Part 9 of our DSA Series, we cover Heaps - the data structure that powers priority-based systems like hospital triage, OS ...
10 views
10d ago
This video helps to understand queue interface in java collection.
14 views
In this video, we solve the popular Meeting Rooms II problem from NeetCode 150 using a Min Heap (Priority Queue) approach.
12 views
Topics Covered: - Queue in Data Structures - Priority Queue using Heap - FIFO Concept - Deque (Double Ended Queue) - Time ...
7d ago
In Part 2 of the Java Collections Interview series, we go deep into Queue-based data structures — a favourite topic for 3–5 year ...
In this lecture, we explore Heap & Priority Queue, two essential data structures widely used in competitive programming, coding ...
5 views
A complete, beginner-friendly guide to stacks and queues — the two fundamental "restricted-access" linear structures. With clear ...
90 views
Every time you order food at a restaurant, print a document, or call customer support, you're interacting with a queue. In this video ...
32 views
In this video, we solve the popular Linked List interview problem: Merge Two Sorted Lists using two different approaches: ✓ Min ...
15 views
Welcome Back to CodeByTushu! In today's video we solve: LeetCode 3691 — Maximum Total Subarray Value II This problem ...
74 views
1mo ago
Belajar Priority Queue di Java dari NOL sampai PAHAM! Di video ini kita akan membahas struktur data Priority Queue ...
1 view
A complete, beginner-friendly guide to binary heaps and priority queues — with Java + Python. Clear step-by-step animation ...
43 views
Welcome to Class 16 of the Java Full Course by BrainXNext In this class, you will learn: Understanding Set Interface in Java ...
3 views
4w ago
Space : O(rows * cols) Time : O(rows * cols * log(rows * cols)) Question - You are given an m x n binary matrix grid and an integer ...
In this problem, we solve LeetCode 215 – Kth Largest Element in an Array, a popular Heap & Priority Queue problem that focuses ...
In this problem, we solve LeetCode 347 – Top K Frequent Elements, a popular Heap & HashMap problem that focuses on finding ...
In this problem, we solve LeetCode 621 – Task Scheduler, a popular Heap & Greedy problem that focuses on scheduling tasks ...
16 views
Master the Java Collections Framework in this complete beginner-to-intermediate guide!** In this video, you'll learn the **Java ...
4 views
2d ago
In this beginner-friendly video, you'll learn: ✓ What is Binary Search Tree (BST)? ✓ BST Rules (Left Root Right) ✓ Binary Tree vs ...
In this problem, we solve LeetCode 295 – Find Median from Data Stream, a classic Heap & Priority Queue problem that focuses ...
... “Minimum Cost of Ropes” problem from GeeksforGeeks (GFG) using a Greedy Algorithm and Min Heap (PriorityQueue) in Java.
281 views
13d ago
In this lesson, we explain the Top K Frequent Elements problem step by step using Java. Input: [1, 1, 1, 2, 2, 3], k = 2 Output: [1, ...
In this video, you'll learn what Big O means, why developers use it to measure efficiency, and how O(1), O(log n), O(n), and O(n²) ...
Meeting Rooms II is a must-know interval problem for any FAANG interview — here's exactly how to solve it with a min heap.
21 views
Hashing Explained in 5 Minutes | HashMap & HashSet in Java | DSA Basics for Beginners In this video, we will learn Hashing in ...
Look at a game character crossing a map. Look at a robot navigating a warehouse. Look at Google Maps plotting a route.
2 views
How do programs like ZIP or JPEG shrink files without losing data? They use Huffman coding – a greedy tree algorithm that ...
In this problem, we solve LeetCode 767 – Reorganize String, a popular Heap & Greedy problem that focuses on rearranging the ...
Max Heap Explained Step-by-Step | Data Structures & Algorithms Tutorial Learn everything you need to know about Max Heaps in ...
40 views
Reheaping a Max Heap | Data Structures & Algorithms Tutorial Learn how reheaping works in a Max Heap step-by-step.
... graph problems java grid problems dsa grid traversal algorithm shortest path in grid priority queue dijkstra priority queue java ...
61 views
Are you struggling with grid traversal problems in your coding interviews? In this video, we tackle LeetCode 2812: Find the ...
36 views
Learn Trie Data Structure in Java in just 5 minutes! In this video, you'll learn: ✓ What is Trie? ✓ Why Trie is called a Prefix Tree ...
CDAC | Java Programming | CMCE Preparation MCQs | Introduction to collections | Part 18 Introduction to collections: ...
Reheaping a Min Heap | Data Structures & Algorithms Tutorial Learn how reheaping works in a Min Heap step-by-step.
A clear, beginner-friendly guide to graphs with Java + Python. Step-by-step animation: what a graph is (and how it differs from a ...
56 views
Master Min Heaps in Data Structures and Algorithms with this complete beginner-to-advanced tutorial. Learn the Min Heap ...
Java Collections Framework Complete Interview Preparation Tutorial In this video, we will learn the Java Collections Framework ...
52 views
Welcome to Class 17 of the Java Full Course by BrainXNext In this class, you will learn: What are Generics in Java Why ...
These are to help you study CSC3 - - uj.
8 views
In this video, we will learn one of the fastest searching algorithms in DSA – Binary Search. Binary Search works by repeatedly ...
Learn Dynamic Programming (DP) in Java in just 5 minutes! In this video, you'll learn: ✓ What is Dynamic Programming? ✓ Why ...
Learn Greedy Algorithm in Java in just 5 minutes! In this video, you'll learn: ✓ What is Greedy Algorithm? ✓ How Greedy makes ...
Learn Bit Manipulation in Java in just 5 minutes! In this video, you'll learn: ✓ What is Bit Manipulation? ✓ Binary Representation ...
PROBLEM DESCRIPTION* You are given an array of integers nums, there is a sliding window of size k which is moving from the ...
2,586 views
In this problem, we solve LeetCode 239 – Sliding Window Maximum, a classic Sliding Window problem that introduces the ...
इस वीडियो में Java Collections Framework को आसान हिंदी में विस्तार से समझाया गया ...
5d ago
Welcome to our channel dedicated to mastering **Heap Data Structure (DSA)**! In this channel, you will learn everything about ...
9d ago
In this video, we will solve LeetCode 23 — Merge K Sorted Lists. We are given multiple sorted linked lists, and our goal is to ...
23 views
In this problem, we solve LeetCode 743 – Network Delay Time, a popular Graph problem that focuses on determining the ...
Learn Backtracking in Java in just 5 minutes! In this video, you'll learn: ✓ What is Backtracking? ✓ How Backtracking works ...
Lecture Resources ...
290 views
11d ago
Infosys SP & DSE Ultimate DSA Sheet – FREE PDF** Preparing for the **Infosys Specialist Programmer (SP)** or **Digital ...
41 min ago
Bananahack recode OWNS Mineberry (montage made by protono) Tags (ignore) minecraft hacking, minecraft hack, minecraft ...
58 views
Learn how to solve the Merge k Sorted Lists LeetCode Hard problem using two distinct strategies: the Min-Heap (Priority Queue) ...
In this video on Developer Coder, we explore LeetCode 3691 - Maximum Total Subarray Value II and discuss an efficient Java ...
860 views
In this video, we solve Leetcode 3970: Shortest Path With At Most K Consecutive Identical Characters using a modified Dijkstra ...
433 views
이번 영상에서는 우선순위 큐(Priority Queue)의 대표 구현체인 힙(Heap)을 정리합니다. "힙은 왜 우선순위 큐 구현에 사용될까?
18 views
In this video, we tackle LeetCode 2812: Find the Safest Path in a Grid! Learn how to maximize your path safeness factor using a ...
1,722 views
LeetCode 3689: Maximum Total Subarray Value I | O(N) Greedy Trick! | Java C++ Python LeetCode POTD / Contest solution ...
339 views
iPad PDF Notes - https://github.com/MAZHARMIK/Interview_DS_Algo/blob/master/iPad%20PDF%20Notes/Binary%20Lifting%20Video%20 ...
4,778 views
Telegram Channel : https://t.me/ctobhaiya_tg Instagram: https://www.instagram.com/ctobhaiya Linkedin: ...
651 views
Whatsapp Community Link : https://www.whatsapp.com/channel/0029Va6kVSjICVfiVdsHgi1A Hi Everyone, this is the 2nd video of our ...
2,009 views
Whatsapp Community Link : https://www.whatsapp.com/channel/0029Va6kVSjICVfiVdsHgi1A Hi Everyone, this is the 4th video of our ...
13,079 views
In this video, we solve LeetCode 3970 - Shortest Path With At Most K Consecutive Identical Characters, the 3rd problem (Q3 ...
447 views
Basic coding may be possible with just Vector and Array, but entering the arena of Competitive Programming without Set ...
593 views
Welcome to the explanation of leetcode problem - 1833 (Maximum Ice Cream Bars)! In this video, we have discussed the ...
446 views
Problem Link: https://leetcode.com/problems/maximum-total-subarray-value-ii/ Solution Link: ...
2,176 views
6,041 views
Whatsapp Community Link : https://www.whatsapp.com/channel/0029Va6kVSjICVfiVdsHgi1A 📹 Video Introduction Hi Everyone, this is ...
4,585 views
Welcome to the explanation of leetcode problem - 3691 (Maximum Total Subarray Value II)! In this video, we have discussed the ...
392 views
LeetCode 3691 : Maximum Total Subarray Value II | 2 Ways | Greedy & Binary Search - Sliding Window LeetCode POTD / Contest ...
985 views
Whatsapp Community Link : https://www.whatsapp.com/channel/0029Va6kVSjICVfiVdsHgi1A Hi Everyone, this is the 3rd video of our ...
2,080 views
15 DSA Patterns Every Student Must Know 🚀 | Complete Telugu Guide | Placements 2026 🔥 Want to crack coding interviews and ...
734 views
How to remove the maximum value from a PQ (singly-linked list)? Helpful? Please use the *Thanks* button above! Or, thank me ...
iPad PDF Notes Link : https://github.com/MAZHARMIK/Interview_DS_Algo/blob/master/iPad%20PDF%20Notes/Top%20K%20from%20Sorted ...
4,653 views
iPad PDF Notes Link : https://github.com/MAZHARMIK/Interview_DS_Algo/blob/master/iPad%20PDF%20Notes/Binary%20Lifting%20Video ...
10,579 views