abc 307 B
// 判断字符串是否为回文字符串 if (s == std::string(s.rbegin(), s.rend())) // 拼接字符串A, B string s = A + B;
abc 300 B
// rotate排序函数 rotate(开始迭代器,新的开头的迭代器,结束迭代器)