In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces how to implement the stack containing min function by LeetCode. It is very detailed and has certain reference value. Friends who are interested must finish reading it.
1. Brief introduction of the problem.
To define the data structure of the stack, implement a min function in this type that can get the smallest elements of the stack. In this stack, the time complexity of calling min, push, and pop is O (1).
2, example
Example:
MinStack minStack = new MinStack (); minStack.push (- 2); minStack.push (0); minStack.push (- 3); minStack.min ();-- > return-3.minStack.pop (); minStack.top ();-- > return 0.minStack.min ();-- > return-2.
Tip:
The total number of calls to each function does not exceed 20000
3. The problem solving idea is solved by using the existing Stack provided by java.
4, problem solving procedure
Import java.util.Iterator;import java.util.Stack
Public class MinStack {static Stack stack = new Stack ()
Public static void main (String [] args) {MinStack minStack = new MinStack (); minStack.push (- 2); minStack.push (0); minStack.push (- 3); System.out.println ("stack =" + stack); int min = minStack.min (); System.out.println ("min =" + min); int pop = minStack.pop () System.out.println ("pop =" + pop); int top = minStack.top (); System.out.println ("top =" + top); int min1 = minStack.min (); System.out.println ("min1 =" + min1);}
Public MinStack () {
}
Public void push (int x) {stack.push (x);}
Public int pop () {Integer pop = stack.pop (); return pop;}
Public int top () {return stack.peek ();}
Public int min () {Integer min = stack.peek (); Iterator iterator = stack.iterator (); while (iterator.hasNext ()) {Integer val = iterator.next (); if (min > val) {min = val;}} return min;}}
5. Picture version of the problem solving program.
These are all the contents of the article "how LeetCode implements the stack that contains min functions". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.