摘要:
C++ 11前的初始化方法 小括号初始化方法 int a = int(5) string s = string("hello") 赋值初始化 int a = 3; string str = "hello"; 大括号初始化(POD聚合) int arr[2] = {0,1}; 构造函数初始化 clas 阅读全文
摘要:
https://pintia.cn/problem-sets/994805260223102976/problems/994805300404535296 #include<iostream> #include <map> using namespace std; const int N = 101 阅读全文