本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/47334243 Given an integer, write a function to determine if it is a power of two. 思路: (1)题意为给定一个正整数,判断该正整数是否为2的幂. (2)该题属于Leetcode中的简单题.只需循环判断正整数N对2求余是否为0,如果不为0,返回false;如果为0,则N的值为原来的…