码迷,mamicode.com
首页 > 其他好文 > 详细

342. Power of Four

时间:2018-05-25 19:25:00      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:col   就是   class   als   style   sync   ios   syn   poweroff   

 1 static int wing=[]()
 2 {
 3     std::ios::sync_with_stdio(false);
 4     cin.tie(NULL);
 5     return 0;
 6 }();
 7 
 8 
 9 class Solution 
10 {
11 
12 public:
13     bool isPowerOfFour(int num) 
14     {
15         return ((num-1)&num)==0 && (num-1)%3==0;
16     }
17 
18 };

像这种本身就是某数的幂的,除了int最大幂求余为0外,还有加个判定,就是(num-1)%(n-1)==0

342. Power of Four

标签:col   就是   class   als   style   sync   ios   syn   poweroff   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9090085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!