我是靠谱客的博主 野性小蜜蜂,最近开发中收集的这篇文章主要介绍输入一整数123,返回一反转后的整数321,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目: 输入一整数,返回一反转后的整数,如:输入798,返回897;输入-8653,返回-3568.

数组反转之类的见多了,但整数反转却少见,自己试了一下,不知道这方法行不行,代码如下:

package algorithm;
import java.util.LinkedList;
/**
* @author RockeyLu<br>
*
输入一整数,返回一反转后的整数,如:输入798,返回897;输入-8653,返回-3568.
*/
public class IntegerInverse {
public static void main(String[] args) {
// int inputInt = 798;
int inputInt = -8653;
System.err.println("Input:" + inputInt);
int result = inverseInteger(inputInt);
System.err.println("result:" + result);
}
/**
* 反转整数
*
* @param inputInt
* @return
*/
private static int inverseInteger(int inputInt) {
if (inputInt == 0) {
return 0;
}
LinkedList<Integer> tempList = new LinkedList<Integer>();
changeIntegerToList(inputInt, tempList);
int result = 0;
for (int i = 0; i < tempList.size(); i++) {
result += tempList.get(i) * Math.pow(10, i);
}
return result;
}
/**
* 把整数拆分放到集合中去
*
* @param inputInt
* @param tempList
*/
private static void changeIntegerToList(int inputInt,
LinkedList<Integer> tempList) {
int temp1 = inputInt / 10;
int temp2 = inputInt % 10;
tempList.addFirst(temp2);
if (temp1 != 0) {
changeIntegerToList(temp1, tempList);
}
}
}


最后

以上就是野性小蜜蜂为你收集整理的输入一整数123,返回一反转后的整数321的全部内容,希望文章能够帮你解决输入一整数123,返回一反转后的整数321所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部