LeetCode231. Power of Two
Posted 医生工程师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode231. Power of Two相关的知识,希望对你有一定的参考价值。
题目:
Given an integer, write a function to determine if it is a power of two.
非常简单的一道题目
class Solution { public: bool isPowerOfTwo(int n) { if (n <= 0) return false; if (n == 1) return true; if (n % 2 != 0) return false; else return isPowerOfTwo(n/2); return true; } };
以上是关于LeetCode231. Power of Two的主要内容,如果未能解决你的问题,请参考以下文章