1.stoi()函数:将string类型的数转换为int类型**
2.比如说将char类型的’2’转为int类型的2
int SsIndex = digits[index] - '0'; //处理第index个字符,将其转换为int类型的变量
int NumInt2 = '2' - '0';
3.**substr(n,m)从下标n开始取m个字符4
4.to_string()函数:将int类型的数转换为string类型
string str = to_string(n);
5.c++字符串的输入,如果要输入空格或特殊的字符,需要用getline函数;
cin<<s; //比如要输入hello World
getlin(cin,s);
6.C++产生[a,n]的随机数:
int target = a + rand() % n;
7.lower_bound(v-t)函数:返回大于等于v-t的第一个元素的迭代器;
set<long> setVector;
if (setVector.lower_bound((long) nums[i] - t) != setVector.end() && *(setVector.lower_bound((long) nums[i] - t)) <= (long) nums[i] + t) {
return true;
}