LeetCode: Pow(x, n)

思路:还是利用二分法的思想,从times = 1开始,将其每次扩大两倍,直到times > n,同时x也会每次扩大两倍。将 n减去 times,重复前面的步骤,直到times为0。我这里采用了n分为奇数和偶数的分别处理,复杂化了代码,其实完全没必要这样。

class Solution {
public:
    double pow(double x, int n) {
        if(0 == n) return 1;
        int isNegative = n <0 ? -1:1;
        long long N = n, times;
        N = abs(N);
        long double X = x, ret = 1;
        while(N>0){
            long double temp = X;
            times = 2;
            if(N%2 == 1) {
				ret *= X;
				N -= 1;
			}
            else{		
                while(N - times >=0){
                    temp *= temp;
					times <<= 1;
                }
			    ret *= temp;
				times >>= 1;
				N -= times;
            }
			
        }
        if(isNegative == -1)ret = 1 / ret;
        return ret; 
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值