c++中STL經常使用的數據結構

一.stack(棧) 常見的操做: #include <bits/stdc++.h> using namespace std; int main() { stack<int> S; S.push(3); S.push(10); S.push(100); cout<<S.size()<<endl; S.pop(); cout<<S.top(
相關文章
相關標籤/搜索