包含min函数的栈

题目:定义栈的数据结构,请在该类型中实现一个能够得到栈最小元素的min函数。
思路:和普通栈一样,包含入栈,出栈,只不过在入栈的时候判断并保存最小值,在出栈时重新计算最小值。

ArrayList实现:

public class Solution {
    private ArrayList<Integer> list = new ArrayList();
    int min = -1;

    public void push(int node) {
        list.add(node);
        if(node<min||min==-1){
            min = node;
        }
    }

    public void pop() {
        if(list.size()>1){
            if(list.get(list.size()-1)==min){
                min = list.get(0);
            }
            list.remove(list.size()-1);
            for(int te:list){
                if(te<min){
                    min = te;
                }
            }
        }
    }

    public int top() {
        if(list.size()>1){
            int res = list.get(list.size()-1);
            return res;
        }
        return 0;
    }

    public int min() {
        return min;
    }
}

链表实现:

public class Solution {
    public static class Node{
        int val;
        Node next;
        public Node(int val){this.val = val;}
    }


    private Node head;
    int min = -1;

    public void push(int node) {
        Node newNo = new Node(node);
        newNo.next = head;
        head = newNo;
        if(min>node||min==-1){
            min = node;
        }
    }

    public void pop() {
        if(head!=null){
            Node temp = head.next;
            head.next = null;
            if(min == head.val){
                if(temp!=null){
                    min = temp.val;
                }
                Node no = temp;
                while(no!=null){
                    if(no.val<min){
                        min = no.val;
                    }
                    no = no.next;
                }
            }
            head = temp;
        }
    }

    public int top() {
        if(head!=null){

            return head.val;
        }
        return 0;
    }

    public int min() {
        return min;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值