2020年3月11日 星期三

[LeetCode] 7. Reverse Integer 解題思路* (Easy)



給一個 32bit 有正負號的整數,返回反轉過後的數字。



LeetCode 題目連結


https://leetcode.com/problems/reverse-integer

題目

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: [−231,  231 − 1]. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.


Accept 作法

要考慮溢位問題,還有負號永遠擺前面,以及遇到 0 在前面反轉後都不顯示。


Runtime: 2 ms
Memory: 36.9 MB

Java
  1. class Solution {
  2. class Solution {
  3. public int reverse(int x) {
  4. String intStr = String.valueOf(x);
  5. StringBuilder result = new StringBuilder();
  6. boolean isCons = false;
  7. for(int i = 0; i< intStr.length();i++){
  8. if(intStr.charAt(i) == '-'){
  9. result.append('-');
  10. isCons = true;
  11. }else{
  12. if(isCons){
  13. if(intStr.charAt(intStr.length() - i) != '-'){
  14. result.append(intStr.charAt(intStr.length() - i));
  15. }
  16. }else{
  17. result.append(intStr.charAt(intStr.length() - 1 - i));
  18. }
  19. }
  20. }
  21. try{
  22. int resultInt = Integer.valueOf(result.toString());
  23. return resultInt;
  24. }catch(Exception e){
  25. return 0;
  26. }
  27. }
  28. }
  29. }
  30.  



官方的答案更簡單。我果然還是想的太冗長了。


  1. class Solution {
  2. public int reverse(int x) {
  3. int rev = 0;
  4. while (x != 0) {
  5. int pop = x % 10;
  6. x /= 10;
  7. if (rev > Integer.MAX_VALUE/10 || (rev == Integer.MAX_VALUE / 10 && pop > 7)) return 0;
  8. if (rev < Integer.MIN_VALUE/10 || (rev == Integer.MIN_VALUE / 10 && pop < -8)) return 0;
  9. rev = rev * 10 + pop;
  10. }
  11. return rev;
  12. }
  13. }
  14.  



更多 LeetCode 相關資源



複習程式面試書籍


除了 LeetCode 練習外,我也入手了這本,題庫來自真正的面試,並非摘自教科書。它們反映出頂尖公司真正會出的題目,你可以藉此做好充分準備

需要的話可以看看,寫得很仔細。



書名:提升程式設計師的面試力:189道面試題目與解答




相關 LeetCode文章一律會放在 程式解題 標籤分類,歡迎持續追蹤。


沒有留言:

張貼留言