Kth Largest Element in a Stream | Heap | AMAZON | Leetcode-703 | Explanation ➕ Live Coding 🧑🏻‍💻

  Рет қаралды 10,577

codestorywithMIK

codestorywithMIK

Күн бұрын

Пікірлер: 31
@JJ-tp2dd
@JJ-tp2dd Жыл бұрын
Next level explanation❤💙 Java: class KthLargest { private int k; private PriorityQueue pq; public KthLargest(int k, int[] nums) { this.k = k; this.pq = new PriorityQueue(); for(int num : nums) { pq.offer(num); } //remove the extra elements till kth element is on top while(pq.size() > k) { pq.poll(); } } public int add(int val) { pq.offer(val); while(pq.size() > k) { pq.poll(); } return pq.peek(); } }
@codestorywithMIK
@codestorywithMIK Жыл бұрын
Thanks a lot JJ. Support of you guys is enough for me ❤️
@JJ-tp2dd
@JJ-tp2dd Жыл бұрын
@@codestorywithMIK ♥️💙♥️
@souravjoshi2293
@souravjoshi2293 Жыл бұрын
Thanks man
@souravjoshi2293
@souravjoshi2293 Жыл бұрын
5:09 - This is why I love this channel
@ssboy5862
@ssboy5862 4 ай бұрын
Bhaiya Sabse best tarike se explain karte ho ap
@saquibabbas1709
@saquibabbas1709 Жыл бұрын
Mik Sir You you have best clarity to derive problems, waiting for your videos everyday Ready to learn new #DpSeries
@codestorywithMIK
@codestorywithMIK Жыл бұрын
Thanks a lot Abbas ❤️❤️❤️
@DurgaShiva7574
@DurgaShiva7574 Жыл бұрын
no ratta... logic is here.. thanks a ton MIK.
@codestorywithMIK
@codestorywithMIK Жыл бұрын
Thanks a lot Vishnu ❤️❤️
@sunnyvlogs__
@sunnyvlogs__ Жыл бұрын
Bhaiya Mera yeh observation hai Heap ke ques. par:- 1. If we are given to find Kth largest element, toh Maxheap will give better soln which is nlogn but Minheap will give optimal ans in nlogk. And this is vice-versa for kth smallest elements Solve dono se kar saktey but Time complexity mein farak rahega. Agar kuch galat likhe toh correct kariyega.
@souravjoshi2293
@souravjoshi2293 Жыл бұрын
correct bro
@codestorywithMIK
@codestorywithMIK Жыл бұрын
That’s correct. Optimal will be minheap
@codeandtalk6
@codeandtalk6 Жыл бұрын
@DevOpskagyaan
@DevOpskagyaan 4 ай бұрын
Super 👌🏻
@FanIQQuiz
@FanIQQuiz Жыл бұрын
You have our respect ❤
@bkmeher9005
@bkmeher9005 11 ай бұрын
next level explanation
@codestorywithMIK
@codestorywithMIK 11 ай бұрын
❤️❤️🙏🙏
@thefinalfit
@thefinalfit Жыл бұрын
Awesome explanation
@sauravchandra10
@sauravchandra10 4 ай бұрын
Python code: class KthLargest: def __init__(self, k: int, nums: List[int]): self.k = k self.nums = nums heapify(self.nums) def add(self, val: int) -> int: heappush(self.nums, val) while len(self.nums) > self.k: heappop(self.nums) return self.nums[0]
@Sviam-w6l
@Sviam-w6l 4 ай бұрын
bhai hats off to youuuuuuuuuuuuuuuuu
@VsEdits59
@VsEdits59 Жыл бұрын
too good sir
@codestorywithMIK
@codestorywithMIK Жыл бұрын
Thanks a lot Vishal ❤️❤️
@salmaniproductions1104
@salmaniproductions1104 4 ай бұрын
Thank you bhaii
@syedmohdgulambaquer3577
@syedmohdgulambaquer3577 Жыл бұрын
We can use multiset also.
@codestorywithMIK
@codestorywithMIK Жыл бұрын
Indeed. ❤️❤️
@RishabhChatterjee-fg2gz
@RishabhChatterjee-fg2gz 4 ай бұрын
Mik bhai dsa ka master hai
@sumedhaghosh1265
@sumedhaghosh1265 6 ай бұрын
insertion sort laga sakte haii?
@aizad786iqbal
@aizad786iqbal 4 ай бұрын
here we have to use global variables only right, no other option is there...
@akashkumarmaurya2319
@akashkumarmaurya2319 4 ай бұрын
kaun kaun aaj potd dekhane aaya h leetcode ka 😅
@gui-codes
@gui-codes 4 ай бұрын
Present Sir 😅
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Kth Largest Element in a Stream | Leetcode 703 | Heap | Day-8
12:32
Ayushi Sharma
Рет қаралды 15 М.
The Dome Paradox: A Loophole in Newton's Laws
22:59
Up and Atom
Рет қаралды 324 М.
L45. K-th Smallest/Largest Element in BST
8:27
take U forward
Рет қаралды 196 М.
MUST KNOW junior role JAVA interview questions
42:15
Keep On Coding
Рет қаралды 136 М.
Kth Largest Element in a Stream - Leetcode 703 - Python
11:18
NeetCode
Рет қаралды 151 М.
Introduction to Heap Data Structure + Priority Queue + Heapsort Tutorial
1:11:07
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН