劍指offer_20_包含min函數的棧

題目描述 定義棧的數據結構,請在該類型中實現一個能夠得到棧最小元素的min函數。 #include <iostream> using namespace std; class Solution { public: struct ListNode{ struct ListNode*next; int val; ListNode(int x, ListNode*p) :next(p), val(x)
相關文章
相關標籤/搜索