实现一个最小栈的push(int x),pop(),top(),min()方法,要求都是常量时间

原题目:https://oj.leetcode.com/problems/min-stack/solution/

实现一个最小栈的push(int x),pop(),top(),min()方法,要求都是常量时间


此代码已经被leetcode接受,下面的分析结果是leetcode给出的:

Hints:

  • Consider space-time tradeoff. How would you keep track of the minimums using extra space?
  • Make sure to consider duplicate elements.
O(n) runtime, O(n) space – Extra stack:

Use an extra stack to keep track of the current minimum value. During the push operation we choose the new element or the current minimum, whichever that is smaller to push onto the min stack.

O(n) runtime, O(n) space – Minor space optimization:

If a new element is larger than the current minimum, we do not need to push it on to the min stack. When we perform the pop operation, check if the popped element is the same as the current minimum. If it is, pop it off the min stack too.

Average Rating: 4.0 (293 votes)


​/**
 * @Author jiangfq
 * 
 */
package com.test;

import java.util.Random;

/**
 * @author jiangfq
 *
 */
public class MinStack {
    
	private static final int INIT_CAPACITY = 16;
	private static final float FACTOR = 0.75f;
	
	private int[] a = null;
	private int currIndex = 0;
	private int size = 0;
	private int min = Integer.MAX_VALUE;
	private int minIndex = -1;
	public MinStack() {
		a = new int[INIT_CAPACITY];
	}
	
	public MinStack(int capacity) {
		if(capacity < 1 || capacity > (Integer.MAX_VALUE - 8)) {
			throw new IllegalArgumentException("illegal capacity value: " + capacity);
		}
		a = new int[capacity];
	}
	
	public void push(int x) {
		if(size > (Integer.MAX_VALUE - 8)) {
			throw new RuntimeException("no more space to store value");
		}
		if(size > 0 && (size + 1) >= a.length) {
			int newSize = (int)(size+size*FACTOR);
			if(newSize > (Integer.MAX_VALUE - 8)) {
				throw new RuntimeException("no more space to store value");
			}
			int[] b = new int[newSize];
			for(int i = 0; i < size; i++) {
				b[i] = a[i];
			}
			a = b;
		}
		if(x < min) {
			min = x;
			minIndex = size;
		}
        a[size++] = x;
        currIndex++;
    }

    public void pop() {
        if(currIndex < 0) {
        	throw new RuntimeException("no more value to pop");
        }
        a[currIndex--] = -1;
        size--;
        System.out.println("size: " + size);
//        System.out.println("currIndex: " + currIndex + ", " + minIndex + ", " + a[currIndex]);
        if(currIndex == minIndex) {
        	int index = 0;
        	int m = a[index];
        	for(int i = (currIndex - 1); i >= 0; i--) {
        		for(int j = i; j >= 0; j--) {
//        			System.out.println("a=" + m + ", " + a[j]);
        			if(m > a[j]) {
        				index = j;
        				m = a[index];
        			}
        		}
        	}
        	min = a[index];
        	minIndex = index;
        }
        if(size == 0) {
        	min = Integer.MAX_VALUE;
        	minIndex = -1;
        }
    }

    public int top() {
    	System.out.println(currIndex+"");
    	return a[currIndex-1];
    }

    public int getMin() {
    	return min;
    }
    public static void main(String[] args) {
    	MinStack ms = new MinStack();
//    	ms.push(2);ms.push(0);ms.push(3);ms.push(0);
//    	System.out.println(+ ms.getMin());
//    	ms.pop();
//    	System.out.println(+ ms.getMin());
//    	ms.pop();
//    	System.out.println(+ ms.getMin());
//    	ms.pop();
//    	System.out.println(+ ms.getMin());
    	
    	ms.push(2147483646);ms.push(2147483646);ms.push(2147483647);
    	System.out.println(ms.top());
    	ms.pop();
    	System.out.println(ms.getMin());
    	ms.pop();
    	System.out.println(ms.getMin());
    	ms.pop();
    	ms.push(2147483647);
    	System.out.println(ms.top());
    	System.out.println(ms.getMin());
    	ms.push(-2147483648);
    	System.out.println(ms.top());
    	System.out.println(ms.getMin());
    	ms.pop();
    	System.out.println(ms.getMin());
    }
    
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值