首页 > 其他 > 详细

670. Maximum Swap

时间:2019-04-04 16:46:23      阅读:147      评论:0      收藏:0      [点我收藏+]

Given a non-negative integer, you could swap two digits at most once to get the maximum valued number. Return the maximum valued number you could get.

 

Example 1:

Input: 2736
Output: 7236
Explanation: Swap the number 2 and the number 7.

 

Example 2:

Input: 9973
Output: 9973
Explanation: No swap.

 

Note:

  1. The given number is in the range [0, 108]

 

Approach #1: Math. [Java]

class Solution {
    public int maximumSwap(int num) {
        char[] digits = Integer.toString(num).toCharArray();
        int[] buckets = new int[10];
        for (int i = 0; i < digits.length; ++i) 
            buckets[digits[i]-‘0‘] = i;
        
        for (int i = 0; i < digits.length; ++i) {
            for (int j = 9; j > digits[i]-‘0‘; --j) {
                if (buckets[j] > i) {
                    char temp = digits[i];
                    digits[i] = digits[buckets[j]];
                    digits[buckets[j]] = temp;
                    return Integer.valueOf(new String(digits));
                }
            }
        }
        
        return num;
    }
}

  

Analysis:

https://leetcode.com/problems/maximum-swap/discuss/107068/Java-simple-solution-O(n)-time

 

670. Maximum Swap

原文:https://www.cnblogs.com/ruruozhenhao/p/10655283.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!