摘要: 1.判断一个数是不是2的幂 bool isTwoPower(int n) { return (n > 0) && (n&(n - 1)); } 2.判断一个数是不是3的幂 class Solution { public: bool isPowerOfThree(int n) { if(n>0) { 阅读全文
posted @ 2016-07-13 19:54 _in_the_way 阅读(170) 评论(0) 推荐(0) 编辑
摘要: int add(int *x, int *y, int *z){ *x += *x; *y += *x; *z += *y; return *z; } 有以下5种情况 阅读全文
posted @ 2016-07-13 15:54 _in_the_way 阅读(161) 评论(0) 推荐(0) 编辑