Given an integer, write a function to determine if it is a power of two.Credits:Special thanks to@jianchao.li.fighterfor adding this problem and creat...
分类:
其他好文 时间:
2015-07-11 07:52:24
阅读次数:
109
题意:判断1个数n是否刚好是2的幂,幂大于0。思路:注意会给负数,奇数。对于每个数判断31次即可。 1 class Solution { 2 public: 3 bool isPowerOfTwo(int n) { 4 if(n1) return false; 5 ...
分类:
其他好文 时间:
2015-07-11 01:03:46
阅读次数:
116
//数值的正数次方
//实现函数double power(double base, int exponent),求base的exponent次方,不得使用库函数,不需要考虑大数问题。
//注意:考虑非法输入的返回。
#include
#include
bool Inpot_illegal = false;
bool equal(double num1, double num2) //判断两...
分类:
编程语言 时间:
2015-07-09 16:16:27
阅读次数:
145
>>> def power(x): ... return x*x ... >>> power(5) 25 >>> def power(x,n): ... s=1 ... while n >0: ... n = n -1 ... s = s*x ... return s ... >>> power(5,2) 25 >>> power(5,3) 125...
分类:
编程语言 时间:
2015-07-09 15:00:54
阅读次数:
162
Given an integer, write a function to determine if it is a power of two.method:1. recursive:if x % 2 != 0, return false;if x == 0, return false;if x =...
分类:
其他好文 时间:
2015-07-08 20:48:12
阅读次数:
97
解法一:不好的解法
double Power(double base,int exponent)
{
double result=1.0;
for(int i=1;i
result*=base;
return result;
}
解法一没有考虑指数为0和负数的情况,只考虑了指数为正数的情况。
解法二:全面但...
分类:
其他好文 时间:
2015-07-07 19:39:28
阅读次数:
87
Given an integer, write a function to determine if it is a power of two.题目意思: 给定一个整数,判断是否是2的幂解题思路: 如果一个整数是2的幂,则二进制最高位为1,减去1后则最高位变为0,后面全部是1,相与判读是否为零,.....
分类:
其他好文 时间:
2015-07-07 18:29:28
阅读次数:
106
231 Power of Two链接:https://leetcode.com/problems/power-of-two/
问题描述:
Given an integer, write a function to determine if it is a power of two.Credits:
Special thanks to @jianchao.li.fighter for ad...
分类:
其他好文 时间:
2015-07-07 16:59:21
阅读次数:
148
Given an integer, write a function to determine if it is a power of two.
2的幂的二进制表示中,必然只有一个“1”,且不可能为负数。
class Solution {
public:
bool isPowerOfTwo(int n) {
if(n<0)
{//若为负数则...
分类:
其他好文 时间:
2015-07-07 13:08:28
阅读次数:
129
解法一:判断一个数是否为2的n次方 若一个数为2的n次方的话 它的二进制则为最高位为1 其余为0 1 class Solution { 2 public: 3 bool isPowerOfTwo(int n) { 4 5 if(n>1;13 ...
分类:
其他好文 时间:
2015-07-07 12:29:42
阅读次数:
74