Hi, I am looking for O(n) solution of this Problem. The problem is to find the 2nd previous minimum element in Array ,If there is no minimum value we can return 0 ;
Example : Array = [2,4,5,3,1,7,10,8]
Result =[0,0,2,0,0,3, 1,1]
Array = [1,2,3,4,2,3,7,8,2,1]
Result= [0,0,1,2,0,2,2,3,0,0]
All I know is, we can find previous minimum element in O(n) using a Stack. But I don't know how to solve for 2nd previous minimum. Any Suggestions?