程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> LeetCode 7: Reverse Integer

LeetCode 7: Reverse Integer

編輯:關於C++

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -321

代碼如下:

class Solution {
public:
    int reverse(int x) {
        if (x == -x)
	{
		return 0;
	}
	if (x < 0)
	{
		return -reverse(-x);
	}
	int result = 0;
	int cutoff = INT_MAX;
	int cutlim = cutoff %10;
	cutoff = cutoff /10;
	while (x)
	{
		int tmp = x%10;
		result = 10 * result ;
		result += tmp;
		x = x/10;
		if (result>cutoff && x)
		{
		    result = 0;
			break;
		}
			
	}
	return result;
    }
};


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved