热门标签
更多>
搜索结果
查询Tags标签: PO91,共有 2条记录-
PO91回文字符串
思路:和判断回文字符串差不多,双指针法 #include <string> using namespace std;class Solution { public:bool validPalindrome(string s){return verify(s, 0, s.length() - 1, 0);}bool verify(string s, int i, int j, int diffcnt){while (i < j){if (s[i…
2021/9/15 6:04:45 人评论 次浏览 -
PO91回文字符串
思路:和判断回文字符串差不多,双指针法 #include <string> using namespace std;class Solution { public:bool validPalindrome(string s){return verify(s, 0, s.length() - 1, 0);}bool verify(string s, int i, int j, int diffcnt){while (i < j){if (s[i…
2021/9/15 6:04:45 人评论 次浏览