Sword refers to offer: Face Test 21--contains the Min function stack (Java implementation) __java

Source: Internet
Author: User

Problem Description:

To define the data structure of the stack, implement a min function in the type that can get the smallest element of the stack. In this stack, the time complexity of calling Min,push and POPs is O (1).

Idea: Add a secondary stack to store the minimum set of values

(here to pay attention to the topic does not say the stack of element types, so try to general)

Import Java.util.Stack;

public class Solution {


    stack s1=new stack ();
    Stack min=new stack ();
    public void push (int node) {
        if (Min.empty ()) {
            Min.push (node);
        } else{
            int top= (int) min.peek ();
            if (node<top) {
               Min.push (node);
            } else{
                Min.push (top);
            }
        S1.push (node);
    }

    public void Pop () {
        if (! S1.empty ()) {
            s1.pop ());
            Min.pop ();
        }

    public int Top () {return
        (int) s1.peek ();
    }

    public int min () {
       if (Min.empty ()) {return
           0;
       }
       return (int) min.peek ();    
    }





}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.