成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

LeetCode[397] Integer Replacement

Drinkey / 2121人閱讀

摘要:復(fù)雜度思路利用位的操作。如果一個數(shù)是奇數(shù),那么末位的位一定是。對于偶數(shù),操作是直接除以。對于奇數(shù)的操作如果倒數(shù)第二位是,那么的操作比的操作能消掉更多的。還有一個的地方是,為了防止越界,可以將先轉(zhuǎn)換成。

LeetCode[397] Integer Replacement

Given a positive integer n and you can do operations as follow:

If n is even, replace n with n/2. If n is odd, you can replace n with
either n + 1 or n - 1. What is the minimum number of replacements
needed for n to become 1?

Example 1:

Input: 8

Output: 3

Explanation: 8 -> 4 -> 2 -> 1

Bit Manipulation

復(fù)雜度
O(1) ?, O(1)

思路
利用bit位的操作。如果這個數(shù)偶數(shù),那么末位的bit位一定是0。如果一個數(shù)是奇數(shù),那么末位的bit位一定是1。對于偶數(shù),操作是直接除以2。

對于奇數(shù)的操作:
如果倒數(shù)第二位是0,那么n-1的操作比n+1的操作能消掉更多的1。
1001 + 1 = 1010
1001 - 1 = 1000
如果倒數(shù)第二位是1,那么n+1的操作能比n-1的操作消掉更多的1。
1011 + 1 = 1100
1111 + 1 = 10000

還有一個tricky的地方是,為了防止integer越界,可以將n先轉(zhuǎn)換成long。long N = n;這樣的處理。

代碼
同樣是從別的地方看到比較好的代碼;

public int integerReplacement(int n) {
    // 處理大數(shù)據(jù)的時候tricky part, 用Long來代替int數(shù)據(jù)
    long N = n;
    int count = 0;
    while(N != 1) {
        if(N % 2 == 0) {
            N = N >> 1;
        }
        else {
            // corner case;
            if(N == 3) {
                count += 2;
                break;
            }
            N = (N & 2) == 2 ? N + 1 : N - 1;
        }
        count ++;
    }
    return count;
}

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/65213.html

相關(guān)文章

  • leetcode397. Integer Replacement

    摘要:題目要求思路和代碼可以發(fā)現(xiàn)除二后所得到的結(jié)果一定優(yōu)于加減。因此,如果當(dāng)前奇數(shù)除二為偶數(shù),則直接做除法,否則將當(dāng)前奇數(shù)加一再除以二,得到偶數(shù)的結(jié)果。 題目要求 Given a positive integer n and you can do operations as follow: If n is even, replace n with n/2. If n is odd, you...

    quietin 評論0 收藏0
  • Leetcode 397. Integer Replacement

    Given a positive integer n and you can do operations as follow: If n is even, replace n with n/2. If n is odd, you can replace n with either n + 1 or n - 1. What is the minimum number of replacements ...

    sutaking 評論0 收藏0
  • [LintCode/LeetCode] Integer Replacement

    Problem Given a positive integer n and you can do operations as follow: 1.If n is even, replace n with n/2.2.If n is odd, you can replace n with either n + 1 or n - 1. What is the minimum number of re...

    fyber 評論0 收藏0
  • [LeetCode] Integer Replacement

    摘要:記一種簡單的的做法先討論邊界,若為最大值,返回然后對整數(shù)分奇偶兩種情況討論,偶數(shù)除以,奇數(shù)判斷是否后能被整除且不等于,若如此則,否則每次操作后計數(shù)器,循環(huán)結(jié)束后返回計數(shù)器值。 Problem Given a positive integer n and you can do operations as follow: If n is even, replace n with n/2.I...

    XFLY 評論0 收藏0
  • LeetCode 397 整數(shù)替換[遞歸] HERODING的LeetCode之路

    摘要:解題思路這題就是最基礎(chǔ)的遞歸運算題目,兩個選擇,一個是偶數(shù),一個是奇數(shù),偶數(shù)直接除操作,奇數(shù)變成左右兩個偶數(shù)繼續(xù)操作選擇操作最小的,注意有一個用例是,解決方法有兩種,第一就是首先把的二次冪都干掉,代碼如下 ...

    HtmlCssJs 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<