2019/3/2 STL初步

STL 棧 stack stack<int> p; //創建一個名爲p的棧 p.push(x); p.pop(); p.size(); p.top(); 隊列 queue queue<int> q; q.push(x); q.pop(); q.size(); q.front(); q.back(); 優先級隊列 priority_queue priority_queue<int> p; p.pus
相關文章
相關標籤/搜索