回文数
Posted bulrush
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回文数相关的知识,希望对你有一定的参考价值。
package com.wing.zx.cloud.system.modular.system.controller; public class Solution { /** * 每次进行取余操作 ( %10),取出最低的数字:y = x % 10 * 将最低的数字加到取出数的末尾:revertNum = revertNum * 10 + y * 每取一个最低位数字,x 都要自除以 10 * 判断 x 是不是小于 revertNum ,当它小于的时候,说明数字已经对半或者过半了 * 最后,判断奇偶数情况:如果是偶数的话,revertNum 和 x 相等;如果是奇数的话,最中间的数字就在revertNum 的最低位上,将它除以 10 以后应该和 x 相等。 * * @param x * @return */ public static boolean isPalindrome(int x) { //1: 如果末尾是0,直接返回false. if (x < 0 || (x % 10 == 0 && x != 0)) return false; int revertedNumber = 0; while (x > revertedNumber) { revertedNumber = revertedNumber * 10 + x % 10; x /= 10; } //x代表前半段。 return x == revertedNumber || x == revertedNumber / 10; } public static void main(String[] args) { int x=1234321; System.out.println(isPalindrome(x)); } }
以上是关于回文数的主要内容,如果未能解决你的问题,请参考以下文章