Java 中的回文与数字

发布于 2024-11-08 07:55:10 字数 1435 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

早乙女 2024-11-15 07:55:10

由于它不是家庭作业,因此如何实施并不重要。

public static <ToStringable> boolean isPalindrome(ToStringable stringable) {
    String text = stringable.toString();
    return text.equals(new StringBuilder(text).reverse().toString());
}

Since its not homework, it shouldn't matter how you implement it.

public static <ToStringable> boolean isPalindrome(ToStringable stringable) {
    String text = stringable.toString();
    return text.equals(new StringBuilder(text).reverse().toString());
}
自在安然 2024-11-15 07:55:10

回文是一个向后读与向前读相同的序列,如“kayak”或 12321。

请参见此处:http ://en.wikipedia.org/wiki/Palindrome

编辑:stackoverflow 上也有很多关于回文的问题。浏览它们,如果您有更具体的问题,请回来:

https://stackoverflow.com/questions/tagged/palindrome

A palindrome is a sequence that reads the same backwards as forwards, like "kayak" or 12321.

See here: http://en.wikipedia.org/wiki/Palindrome

EDIT: there are also lots of questions about palindromes on stackoverflow already. Browse through them and come back if you have more specific questions:

https://stackoverflow.com/questions/tagged/palindrome

失眠症患者 2024-11-15 07:55:10

回文是一个序列,颠倒序列会得到相同的序列。例如MAM

Palindrome is a sequence such that reversing the sequence gives you the same sequence. E.g. MAM

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文