java字符串最长回文串_Java中的字符串回文程序

java字符串最长回文串

Given a string and we have to check whether it is palindrome string or not.

给定一个字符串,我们必须检查它是否是回文字符串。

A string that is equal to its reverse string is known as palindrome string. To implement the program for checking whether a given string is a palindrome or not, we have created a function "isPalindrome()".

等于其反向字符串的字符串称为回文字符串 。 为了实现检查给定字符串是否为回文程序 ,我们创建了一个函数“ isPalindrome()”

In the function,

在功能上

  • We are checking for whether a string is an empty string or not – if the string is an empty string then throwing an error.

    我们正在检查一个字符串是否为空字符串-如果该字符串为空字符串,则抛出错误。

  • Then, we are converting string to uppercase to make comparison case insensitive.

    然后,我们将字符串转换为大写以使比较大小写不敏感。

  • Then, running a loop from 0 to len/2, to compare the first character with last character, the second character with second last character and so on..., and checks whether they are equal or not if both the elements are equal it goes for the next one. If not, then code returns false. Going on comparing first and last elements of the string if it reaches the length/2 mark then the loop ends, and return true for Palindrome.

    然后,从0到len / 2循环运行,比较第一个字符与最后一个字符,第二个字符与倒数第二个字符,依此类推...,并检查两个元素是否相等,是否相等?去下一个。 如果不是,则代码返回false。 继续比较字符串的第一个和最后一个元素(如果它达到length / 2标记),则循环结束,并为回文式返回true。

用于检查字符串回文的Java代码 (Java code for checking string palindrome)

// Java code for checking string palindrome 
public class Main {
//function to check whether string is Palindrome or not
public static boolean isPalindrome(String str) {
// Checking for null
if (str == null) {
throw new IllegalArgumentException("String is null.");
}
// length of the string
// if there is one character string - returing true
int len = str.length();
if (len <= 1) {
return true;
}
// Converting the string into uppercase 
// to make the comparisons case insensitive 
String strU = str.toUpperCase();
// result variable
// default initializing it with true
boolean result = true;
for (int i = 0; i < len / 2; i++) {
if (strU.charAt(i) != strU.charAt(len - 1 - i)) {
result = false;
// break the loop if the condition is true
break;
}
}
return result;
}
//main code  
public static void main(String[] args) {
String str1 = "Hello world!";
if (isPalindrome(str1)) {
System.out.println(str1 + " is a palindrome string ");
} else {
System.out.println(str1 + " is not a palindrome string ");
}
String str2 = "ABCxCBA";
if (isPalindrome(str2)) {
System.out.println(str2 + " is a palindrome string ");
} else {
System.out.println(str2 + " is not a palindrome string ");
}
String str3 = "noon";
if (isPalindrome(str3)) {
System.out.println(str3 + " is a palindrome string ");
} else {
System.out.println(str3 + " is not a palindrome string ");
}
String str4 = "nooN";
if (isPalindrome(str4)) {
System.out.println(str4 + " is a palindrome string ");
} else {
System.out.println(str4 + " is not a palindrome string ");
}
}
}

Output

输出量

Hello world! is not a palindrome string
ABCxCBA is a palindrome string
noon is a palindrome string
nooN is a palindrome string

翻译自: https://www.includehelp.com/java-programs/string-palindrome-program-in-java.aspx

java字符串最长回文串

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541134.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

UOJ#31 【UR #2】猪猪侠再战括号序列

传送门http://uoj.ac/problem/31 大家好我是来自百度贴吧的_叫我猪猪侠&#xff0c;英文名叫_CallMeGGBond。 我不曾上过大学&#xff0c;但这不影响我对离散数学、复杂性分析等领域的兴趣&#xff1b;尤其是括号序列理论&#xff0c;一度令我沉浸其中&#xff0c;无法自拔。至…

li怎么让文字在图片下面_div+css(ul li)实现图片上文字下列表布局

css样式表代码&#xff1a;html布局代码&#xff1a;效果图&#xff1a;html布局部分&#xff0c;可根据自己需要添加对应的div即可。1、CSS关键样式单词解释1)、ul.imglist{ margin:0 auto; width:536px; overflow:hidden}使用margin:0 auto&#xff0c;让ul结构布局居中&…

如何使用React Native样式表?

Without wasting much time, a style sheet as commonly known in a CSS is an object or block of code of many styling properties and values which is applied in a code when called. 在不浪费大量时间的情况下&#xff0c;CSS中通常已知的样式表是具有许多样式属性和值的…

【iCore1S 双核心板_ARM】例程三:EXTI中断输入实验——读取ARM按键状态

实验原理&#xff1a; 按键的一端与STM32的GPIO(PB9)相连&#xff0c;且PB9外接一个1k大小的限流上接电阻。 初始化时把PB9设置成输入模式&#xff0c;当按键弹起时&#xff0c;PB9由于上拉电阻的作用呈高电平&#xff08;3.3V&#xff09;&#xff1b; 当按键按下时&#xff0…

MySQL小黑框怎么打开_打开你的小黑框命令行,来跟我一起嗨嗨嗨

文章更新于2020-03-16关于电脑位数&#xff1a;位数代表cpu可寻址的内存地址大小。32位的cpu最多可使用4GB内存&#xff0c;而64位cpu能处理的内存范围就高多了。操作系统也类似&#xff0c;只要看到操作系统里面能识别8GB内存就可以知道cpu和操作系统都是64位。一、常用的 cmd…

您如何从Python的stdin中读取信息?

Python supports following ways to read an input from stdin (standard input), Python支持以下方式从stdin(标准输入)读取输入 &#xff0c; 1)使用sys.stdin (1) Using sys.stdin) sys.stdin is a file-like object on which we can call functions read() or readlines()…

CentOS7下的AIDE***检测配置

1、AIDE的简单介绍AIDE通过扫描一台&#xff08;未被篡改&#xff09;的Linux服务器的文件系统来构建文件属性数据库&#xff0c;以后将服务器文件属性与数据库中的进行校对&#xff0c;然后在服务器运行时对被修改的索引了的文件发出警告。出于这个原因&#xff0c;AIDE必须在…

mysql主从不同步 tar_Mysql主从不同步问题处理案例

在使用Mysql的主从复制架构中&#xff0c;有两个比较头疼的问题&#xff1a;1、主从数据不同步后如何处理2、主从同步延迟问题如何解决本文将根据实际案例来分析下问题1&#xff0c;至于问题2多数文档介绍的办法是启用多线程复制来解决&#xff0c;言归正传&#xff0c;这里的问…

编程语言优缺点_R编程语言的优缺点

编程语言优缺点In general, the R programming language is considered as the machine learning language. This is widely employed in the applications where the data analysis, visualization, and the sampling process are involved. The R programming language is ta…

mysql重做日志与binlog日志区别_MySQL中的重做日志(redo log),回滚日志(undo log),以及二进制日志(binlog)的简单总结...

MySQL中有六种日志文件&#xff0c;分别是重做日志(redo log)回滚日志(undo log)二进制日志(binlog)错误日志(errorlog)慢查询日志(slow query log)一般查询日志(general log)中继日志(relay log)。其中重做日志和回滚日志与事务操作息息相关&#xff0c;二进制日志也与事务操作…

python 绘制三角函数_Python | 绘制三角函数

python 绘制三角函数Trigonometry is one of the most important parts in engineering and many times, therefore matplotlib.pyplot in combination with NumPy can help us to plot our desired trigonometric functions. In this article, we are going to introduce a fe…

《深入理解Elasticsearch(原书第2版)》一2.3.3 把查询模板保存到文件

本节书摘来华章计算机《深入理解Elasticsearch&#xff08;原书第2版&#xff09;》一书中的第2章 &#xff0c;第2.3.3节&#xff0c;[美]拉斐尔酷奇&#xff08;Rafal Ku&#xff09; 马雷克罗戈任斯基&#xff08;Marek Rogoziski&#xff09;著 张世武 余洪淼 商旦 译 …

python两个中文队列比较_具有两个优先级的优先级队列Python

使用NPE的策略-一个tuple作为队列优先级&#xff0c;tuple是(fpriority, spriority)&#xff1a;import Queueclass Job(object):def __init__(self, fpriority, spriority, descriptionblah, iatafoo , hopsample, costfree pitchers):self.fpriority fpriorityself.spriorit…

之江学院第0届 A qwb与支教 容斥与二分

题目链接&#xff1a; http://115.231.222.240:8081/JudgeOnline/problem.php?cid1005&pid0 题目描述&#xff1a; 给你三个数x, y, z 和 N 输出从1开始数第N个不是x, y, z 任意一个数的倍数的数字 解题思路&#xff1a; 一看到倍数我先想到素数唯一分解定理&#xff0c; …

java toarray_Java Vector toArray()方法与示例

java toarray向量类toArray()方法 (Vector Class toArray() method) Syntax: 句法&#xff1a; public Object[] toArray();public Object[] toArray(Type[] ty);toArray() method is available in java.util package. toArray()方法在java.util包中可用。 toArray() method i…

Python基础--环境配置、编码风格、基础概念、基本数据类型(1)

#######python########python的基本[rootdesktop ~]# yum install python -y[rootdesktop ~]# python -V ##查看python版本Python 2.7.5[rootdesktop ~]# python --versionPython 2.7.5为什么用/usr/bin/python关于python脚本中的第一行内容 :#!/usr/bin/python 这种写法表示…

java treemap_Java TreeMap keySet()方法与示例

java treemapTreeMap类的keySet()方法 (TreeMap Class keySet() method) keySet() method is available in java.util package. keySet()方法在java.util包中可用。 keySet() method is used to return a set of keys that exists in this TreeMap to be viewed in a Set. keyS…

mysql简单部署_安装部署Mysql实例(最简单快速噢)

题外话作为Mysql DBA&#xff0c;我们平时必须要熟练的一个最最基础的技能&#xff0c;即安装部署Mysql实例&#xff0c;所以本文分享一个快速安装部署Mysql实例的方法。一、环境介质准备Mysql安装包准备服务器准备我这里使用的是centos 7.x&#xff0c;此方法适用于任何其他li…

zabbix增加手机端4个url地址的返回值

由同事提供4个需要监控的url地址GET类型&#xff1a;http://10.15.24.61:809/UserCenterService.svc/getAccountInfo/563/9638POST类型&#xff1a;http://10.15.24.61:809/ProductService/userInvestVarietyYjsList/4/0/563/1/9638/1.0http://10.15.24.61:809/ProductService/…

java timezone_Java TimeZone setID()方法与示例

java timezoneTimeZone类的setID()方法 (TimeZone Class setID() method) setID() method is available in java.util package. setID()方法在java.util包中可用。 setID() method is used to set the id of this TimeZone. setID()方法用于设置此TimeZone的ID。 setID() metho…