carloscn / structstudy

Leetcode daily trainning by using C/C++/RUST programming.
4 stars 1 forks source link

leetcode1342:将数字变成 0 的操作次数(number-of-steps-to-reduce-a-number-to-zero) #211

Open carloscn opened 1 year ago

carloscn commented 1 year ago

问题描述

给你一个非负整数 num ,请你返回将它变成 0 所需要的步数。 如果当前数字是偶数,你需要把它除以 2 ;否则,减去 1 。

  示例 1:

输入:num = 14 输出:6 解释: 步骤 1) 14 是偶数,除以 2 得到 7 。 步骤 2) 7 是奇数,减 1 得到 6 。 步骤 3) 6 是偶数,除以 2 得到 3 。 步骤 4) 3 是奇数,减 1 得到 2 。 步骤 5) 2 是偶数,除以 2 得到 1 。 步骤 6) 1 是奇数,减 1 得到 0 。

示例 2:

输入:num = 8 输出:4 解释: 步骤 1) 8 是偶数,除以 2 得到 4 。 步骤 2) 4 是偶数,除以 2 得到 2 。 步骤 3) 2 是偶数,除以 2 得到 1 。 步骤 4) 1 是奇数,减 1 得到 0 。 示例 3:

输入:num = 123 输出:12  

提示:

0 <= num <= 10^6

来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/number-of-steps-to-reduce-a-number-to-zero

carloscn commented 1 year ago

问题分析

pub fn number_of_steps(num: i32) -> i32
{
    if num == 0 {
        return num;
    }

    let mut e = num;
    let mut ret = 0;

    while e != 0 {
        if e & 1 == 0 {
            e /= 2;
        } else {
            e -= 1;
        }
        ret += 1;
    }

    return ret;
}
carloscn commented 1 year ago

code

https://review.gerrithub.io/c/carloscn/structstudy/+/553573 https://github.com/carloscn/structstudy/commit/72a101343f294cbb42596ef41ec1209401cf97f4