摘要: //判断字符串是否是回文字符串(考虑大小写,空格和标点符号) bool palindrome1(string& str) { string ret; for (auto& c : str) { if (isalpha(c)) { if (isupper(c)) { ret.push_back(tol 阅读全文
posted @ 2024-02-20 18:37 wshidaboss 阅读(408) 评论(0) 推荐(0) 编辑