【打卡】牛客网:BM88 判断是否为回文字符串

发布时间:2024年01月15日

?我写的:

其实不用考虑奇数长度还是偶数长度。

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param str string字符串 待判断的字符串
     * @return bool布尔型
     */
    bool judge(string str) {
        // write code here
        int n = str.size();
        int start = 0;
        int end = n-1;
        while(start <= end){
            if(n % 2 ==0 && start == end)
                break;
            
            if(str[start++] != str[end--])
                return false;
        }

        return true;
    }
};

模板的:

while(start<end),即,没有等号,也没有考虑长度的奇偶。

文章来源:https://blog.csdn.net/weixin_47173826/article/details/135598686
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。