标签:ble sed 资料 display 链接 编写 als tom ott
class Solution { public boolean isPowerOfTwo(int n) { if(n<=0) return false; while(n-((n>>>1)<<1)!=1){ n=n>>>1; } if ((n>>>1)!=0) return false; else return true; } }
标签:ble sed 资料 display 链接 编写 als tom ott
原文地址:https://www.cnblogs.com/DoubleBarbecue/p/11332108.html