we can do it with below code also it is using same concept but we will simply start with max element in array (because we know that its NGE will be -1 and we know that if we don't find any other element who is greater than our current element then we know maxelement will be our answer) then we will traverse through other elements like NGE-I video(because we know the ending) class Solution { public: vector nextGreaterElements(vector& nums) { int maxele = INT_MIN; int maxidx = -1; int n = nums.size(); for(int i=0;i(maxidx-n-1);i--){ int idx = i; if(idx nums[idx]){ nge[idx] = st.top(); st.push(nums[idx]); } else{ while(!st.empty() && st.top()
@onelove1774 ай бұрын
Literally I have at least 10 videos to get this but I didn't get! But sir Striver!😍 Thank you!
@Kshitijsingh-n7f2 ай бұрын
MY APPROACH--> approach-1(optimal) TC-O(3N) SC-O(2N) [including memory for storing returning answer] //push all ele from n-2 to start then traverse from the n-1 to the start in similar way as NGE 1 problem since in NGE 1 problem we didnt have any greater ele for the last so we started from last and just check next left and left updating the their maxes but here since last ele can also have the NGE so we have put all elements that can be NGE of last ele then we do like normal NGE 1 problem solution vector nextGreaterElements(vector& nums) { stacks; int n=nums.size(); vectorv(n); for(int i=n-2;i>=0;i--){ s.push(nums[i]); } for(int i=n-1;i>=0;i--){ while(!s.empty() && s.top()
@ashmitshelke1444Ай бұрын
thats what I did too
@SomrikTapaswi3 ай бұрын
loved the way you made us understand !
@Jai_Shri_Krishna_Shri_radhe4 ай бұрын
@Take you forward Small optimisation :- Why we even need to push 2n elements push only till (i < n) Then we would not waste extra time in pushing and popping...
@amanasrani64056 күн бұрын
Thank You So Much Sir for this Amazing Lecture
@pullurupraveen9315Ай бұрын
we can put the all the elements in order expect the last element to get compared then perform the operation using the NGE (using the stack)here the time complexity at worst case becomes like 0(2n+1) and space complexity also 0(n+2).
@atulwadhwa192Ай бұрын
The better solution was the goto hint to approach the optimal approach. Striver OP 🔥
@alonbrim27 күн бұрын
Very clear explanation! Thanks a lot!
@vaarigupta6332Ай бұрын
Awesome explaination
@jenishadsouza9072 ай бұрын
Excellent explanation!
@amankumarsingh39954 ай бұрын
Excellent video
@apmotivationakashparmar7222 ай бұрын
Thank you for excellent explaination.
@Akash-Bisariya2 ай бұрын
very nicely explained 😍😍
@aravatanish31702 ай бұрын
Striver please upload Heap series
@rushidesai28362 ай бұрын
Smart solution. Wow.
@shivam_prakash_01083 ай бұрын
excellent explanation
@sauravfarkade19284 ай бұрын
Thankyou bhaiya!!
@shubhamlifearts81384 ай бұрын
Thanks bhaiya for great content ❤
@alessandrocamilleri12393 ай бұрын
Thank you and great explanation. Can't you just traverse the array circularly in reverse from the max element index? That way you would just add an O(n) to the original TC of NGE1. I coded it as follows: vector nextGreaterElements(vector& nums) { int n = nums.size(); int maxIndex = 0; for (int i = 1; i < n; i++) // ADDITIONAL O(n) if (nums[i] > nums[maxIndex]) maxIndex = i; stack st; vector nge(n); for (int i = maxIndex; i > maxIndex - n; i--) { int j = (n + i) % n; while (!st.empty() && st.top()
@closer96893 ай бұрын
CODE => class Solution { public: //Better Approach :-> without making extra circular array vector nextGreaterElements(vector& nums) { int n = nums.size(); stack st; for(int i = n-2 ; i >= 0; --i) { st.push(nums[i]); } vector result; for(int i = n-1 ; i>= 0 ; --i) { int curr = nums[i]; while ( !st.empty() && st.top()
@priyapathak97164 ай бұрын
Implement Queue using Stacks put this one also! thnku
@tusharsingh12574 ай бұрын
Completed 19th July
@SibiRanganathL3 ай бұрын
Understood
@DeadPoolx1712Ай бұрын
UNDERSTOOD;
@SoulFrmTitanic2 ай бұрын
guys jo for the first time stacks and queues kr raha h, kya tumse ye questions khud se ho paate hn ? Please batana!! kyuki mujhse literally nhi hopaate!! hn, ek aad baar meri approach jrur same hojaati h striver bhaiya jesi
@ashwani65272 ай бұрын
For beginners the best way is to watch and learn then understand then revise
@SoulFrmTitanic2 ай бұрын
@@ashwani6527 ok bhaiya!!
@ashutoshyadav9881Ай бұрын
kisi se nhi hote jab tak us type ke question na kiye ho
@oyeesharmeАй бұрын
thanks bhai
@atulwadhwa192Ай бұрын
My approach: class Solution { private: void findNgeForLastEle(vector &nums,int n,stack &st,vector &res){ // int nge = -1; for(int i=n-2;i>=0;i--){ if(nums[i]>nums[n-1]) st.push(nums[i]); } if(!st.empty()) res[n-1] = st.top(); st.push(nums[n-1]); } public: vector nextGreaterElements(vector& nums) { stack st; int n = nums.size(); vector res(n,-1); findNgeForLastEle(nums,n,st,res); for(int i = n-2;i>=0;i--){ while(!st.empty() && st.top()
@agneshk10123 ай бұрын
class Solution { public int[] nextGreaterElements(int[] nums) { int n = nums.length; int[] nge = new int[n]; Stack stack = new Stack(); for(int i=2*n-1; i>=0; i--) { int index = i%n; while(!stack.isEmpty() && nums[index] >= stack.peek()) stack.pop(); if(stack.empty()) nge[index] = -1; else nge[index] = stack.peek(); stack.push(nums[index]); } return nge; } }
@KartikeyTT4 ай бұрын
tysm sir
@omkarshendge54384 ай бұрын
you forgot to reverse the ans vector by the way, like that is how i got all cases passed.
@akhilesh_ku4 ай бұрын
Nah not needed 😊
@ashu_100114 ай бұрын
that is needed only when you are using push_back or emplace_back functions to add elements in the answer vector
@adilahmed67303 ай бұрын
@@ashu_10011 what's the alternate method to add to the vector array?
@ryanv75353 ай бұрын
Isn't the space complexity O(n)? Say the stack contains some element a, after which there are some elements and then a is pushed into stack again. When that occurs all elements from top to a will be popped. So there can never be more than n elements in the stack, is what I think. Please correct me if I'm making a mistake.
@Gurunat163 ай бұрын
Same thoughts!
@AradhyaVerma-p3m15 сағат бұрын
BRUTEFORCE: ***JAVA*** class Solution { public int findGreater(int index,int value,int []nums){ for(int i=index;i
@barathkumarg91972 ай бұрын
public static void findNextGreater(int[] inputArray, int[] output){ Stack stack = new Stack(); //Iterate the input Array for (int index=inputArray.length -1 ;index>=0;index--){ //pop the highest elements while(!stack.isEmpty() && inputArray[index] > stack.peek()) stack.pop(); //stack empty case if (stack.isEmpty()) { stack.push(inputArray[index]); output[index] = -1; } // else we found the next greater element just push to stack and output array else{ output[index] = stack.peek(); stack.push(inputArray[index]); } } } i think these one worked for me, which is simple, no need of double iteration, if i am wrong please correct me, Thanks !!!
@vinit_notfound4 ай бұрын
❤❤❤❤
@amankumarsingh39954 ай бұрын
❤
@abhaykumarsingh38843 ай бұрын
Steps 1. Just put all element from end in stack first. 2. Now perform same operations as you have performed in Next-Greater Element-I You don't need to think about hypothical array
@adilahmed67303 ай бұрын
I also thought of the same method
@Ekam8733 ай бұрын
great method
@chiragmaheshwari67612 ай бұрын
what is thought process behind it intiutiton can u please explain me brother
@shikher45592 ай бұрын
great observation!
@shreyxnsh.144 ай бұрын
C++ Code: class Solution { public: vector nextGreaterElements(vector& nums) { stack st; int n = nums.size(); vector ans(n, -1); for(int i=2*n-1;i>=0;--i){ while(!st.empty() && st.top()
@omkarshendge54384 ай бұрын
you need to reverse the ans array too
@esco0p2103 ай бұрын
@@omkarshendge5438 take vector ans (n,-1) it will be reversed
@skasrafali87073 ай бұрын
@@omkarshendge5438 yes you are right
@pruthvinarayana95683 ай бұрын
⭐⭐Solution in Python: Can Also be Sovled Like This: class Solution: def nextGreaterElements(self, nums: List[int]) -> List[int]: stack = [] n = len(nums) res = [-1] * n for i in range(2*n): index = i%n # Here the Cur is the Index , NOT the current Value. while stack and nums[index] > nums[stack[-1]]: res[stack[-1]] = nums[index] stack.pop() stack.append(index) return res
@IshraqTanvir2 ай бұрын
his explanaition is too well.........................................................................but, it would be better if he don't write pseudocode and write real code
@sohaildarwajkar99792 ай бұрын
Then u would complain about the language in which he is writing the code..Grow Up man!!
@IshraqTanvir2 ай бұрын
@@sohaildarwajkar9979 actually I won't ....... ...... cause most of the cpp mans whether like java or c++.......both the language is much closer syntaxically......
@talkswithprabh537428 күн бұрын
If you know the logic and pseudo code, its too easy to write code. Its all about syntax then.