STL map學習小記

map 鍵值對,一對一,會自動排序,底層數據結構是紅黑樹,查找、插入、刪除某一元素賊快,因爲其不是線性數據結構,故不能用sort函數。 #include<iostream> #include<map> #include<algorithm> #include<string> using namespace std; int main() {     map<int,int,greater<int>
相關文章
相關標籤/搜索