摘要:
1.判断一个数是不是2的幂 bool isTwoPower(int n) { return (n > 0) && (n&(n - 1)); } 2.判断一个数是不是3的幂 class Solution { public: bool isPowerOfThree(int n) { if(n>0) { 阅读全文
摘要:
int add(int *x, int *y, int *z){ *x += *x; *y += *x; *z += *y; return *z; } 有以下5种情况 阅读全文