码迷,mamicode.com
首页 > 其他好文 > 详细

实现具有getMin功能的栈

时间:2018-05-18 18:11:54      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:ini   nbsp   temp   pop   AC   ack   stack   pst   bsp   

#include "stack.h"
#include <stdlib.h>
#include <stdio.h>

Stack SMin, SData;

int PUSH(int *_d)
{
    int temp = 0;

    PushStack(&SData, _d);
    if(EmptyStack(&SMin) == 0)
        PushStack(&SMin, _d);
    else
    {
        GetTopStack(&SMin, &temp);
        if(*_d < temp)
            PushStack(&SMin, _d);
    }
}

int POP(int *_d)
{
    int temp = 0;

    PopStack(&SData, _d);
    GetTopStack(&SMin, &temp);
    if(*_d == temp)
        PopStack(&SMin, &temp);
}

int getMin(int *_d)
{
    GetTopStack(&SMin, _d);
}

int main(void)
{
    int i=10, j=20, k=30, temp=0;
    
    InitStack(&SData);
    InitStack(&SMin);

    PUSH(&i);
    PUSH(&j);
    PUSH(&k);

    getMin(&temp);
    printf("%d \n", temp);
    exit(0);
}

 

实现具有getMin功能的栈

标签:ini   nbsp   temp   pop   AC   ack   stack   pst   bsp   

原文地址:https://www.cnblogs.com/MrRS/p/9057113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!