摘要:
//想要把两个元素绑在一起作为一个合成元素,而不需要新建结构体 #include<bits/stdc++.h> #include<iostream> #include<map> using namespace std; //pair 相当于有两个元素的结构体 //分别通过first和second访问 阅读全文
摘要:
People often have a preference among synonyms of the same word. For example, some may prefer "the police", while others may prefer "the cops". Analyzi 阅读全文
摘要:
queue //STL之queue用法 //实现先进先出 #include<stdio.h> #include<queue> using namespace std; int main() { //定义 queue<int> qu; //进队 qu.push(1); qu.push(2); qu.p 阅读全文
摘要:
//STL之MAP用法 //以往定义的数组实现了int类型向其他类型的映射 //现在想要实现其他类型向其他类型的映射 //通过map实现键值对存储 #include<stdio.h> #include<map> using namespace std; int main() { //定义 map<c 阅读全文