「每日一道演算法題」Reverse Integer
Algorithm
OJ address
Leetcode website : 7. Reverse Integer
Description
Given a 32-bit signed integer, reverse digits of an integer.
Example 1:
Input: 123
Output: 321
Example 2:
Input: -123
Output: -321
Example 3:
Input: 120
Output: 21
Note:
Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−2的31次方, 2的31次方 − 1]. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
Solution in C (one)
int reverse(int x) {
int t = 0;
if (x == 0) return 0;
while (!x%10) {
x/=10;
}
int sum = 0;
long long reallysum = 0;
while (x) {
reallysum *=10;
sum *= 10;
t = x%10;
reallysum+=t;
sum+=t;
x/=10;
}
if (reallysum != sum) return 0;
return sum;
}
Solution in C (Two)
int reverse(int x) {
int t = 0;
if (x == 0) return 0;
while (!x%10) {
x/=10;
}
int sum = 0;
int tmp = 0;
while (x) {
sum *= 10;
if (sum/10 != tmp) return 0;
t = x%10;
sum+=t;
x/=10;
tmp = sum;
}
return sum;
}
My Idea
題目含義是,給定一個int型別的整數,然後進行數字反轉,輸出。
- 反轉後,將前導0去掉,例如2300 -> 0023 ->23
- 如果超過 INT_MAX , 或者小魚 INT_MIN,則輸出0,關於這個如何判斷,有兩種簡單的方法,第一種方法是用long long來存取變數,如果大於INT_MAX或者小於INT_MIN,則輸出0.第二種方法就是如果超出最大值,或小於最小值,則你最高位後面的尾數是會因為超出最大值而跟著改變的,所以你只要檢測尾數如果變化,就輸出0即可,這就是我程式碼裡的第二種方法。
相關文章
- LeetCode - 解題筆記 - 7 - Reverse IntegerLeetCode筆記
- Leetcode 7 Reverse IntegerLeetCode
- LeetCode Reverse Integer(007)解法總結LeetCode
- 每日一道演算法題:1.兩數之和演算法
- 從一道面試題探究 Integer 的實現面試題
- 每日一道演算法:迴文數演算法
- 每日一道演算法, 《兩數之和》演算法
- 每日一道演算法題--leetcode 112--路徑總和--python演算法LeetCodePython
- 每日一道演算法題之矩陣的Z字型遍歷演算法矩陣
- 每日一道演算法題--leetcode 461--漢明距離--python演算法LeetCodePython
- 每日一道演算法:旋轉陣列演算法陣列
- 每日一道演算法:整數反轉演算法
- 每日一道演算法:搜尋插入位置演算法
- Reverse a String-freecodecamp演算法題目演算法
- 每日一道演算法題之陣列實現資料結構演算法陣列資料結構
- 一道演算法題演算法
- 每日一道演算法:兩陣列的交集演算法陣列
- 每日一道演算法:二分查詢演算法
- 每日一道演算法題--leetcode 113--路徑總和II--python演算法LeetCodePython
- 一道前端演算法題前端演算法
- 每日一道演算法題--leetcode 169--求眾數--python--兩種方法演算法LeetCodePython
- 每日一道演算法:羅馬數字轉整數演算法
- 一道演算法題的分析演算法
- 每日一道java筆試題 2020-9-23Java筆試
- 每日一道演算法題--leetcode 26--刪除排序陣列中重複項--python演算法LeetCode排序陣列Python
- 每日一道演算法題--leetcode 124--二叉樹中的最大路徑和--python演算法LeetCode二叉樹Python
- 每日一道演算法:最後一個單詞的長度演算法
- 使用 AI 解決一道演算法題AI演算法
- 每日一道演算法:刪除排序陣列中的重複項演算法排序陣列
- LeetCode演算法簡單題--JavaScript(每天一道題)LeetCode演算法JavaScript
- 每日一道Leetcode——上升下降字串LeetCode字串
- 每日一道 LeetCode (3):迴文數LeetCode
- 每日一道 LeetCode (1):兩數之和LeetCode
- 一道有意思的面試演算法題面試演算法
- 每天一道演算法題:Z字形轉換演算法
- 每天一道演算法題:顛倒整數演算法
- 一道簡單的分配演算法題,求解演算法
- 【20190326】【每天一道演算法題】求眾數(分治演算法)演算法