美文网首页
Java检测字符串是否是回文字符串的代码

Java检测字符串是否是回文字符串的代码

作者: xintiantian | 来源:发表于2019-02-07 14:18 被阅读0次

如下代码内容是关于Java检测字符串是否是回文字符串的代码。

    public static boolean isPalindrome(String s){ 

        int low = 0; 

        int high = s.length()-1; 

        while(low < high){ 

            if(s.charAt(low)!=s.charAt(high)){ 

                return false; 

            } 

            low ++; 

            high --; 

        } 

        return true; 

    } 

相关文章

网友评论

      本文标题:Java检测字符串是否是回文字符串的代码

      本文链接:https://www.haomeiwen.com/subject/knawsqtx.html