实现具有getMin功能的栈
摘要:
#include "stack.h" #include #include Stack SMin, SData; int PUSH(int *_d) { int temp = 0; PushStack(&SData, _d); if(EmptyStack(&SMin) == 0) PushStack(&SMin, _d); else ... 阅读全文
posted @ 2018-05-18 17:23 MrRS 阅读(107) 评论(0) 推荐(0) 编辑