摘要: 1 class Solution { 2 public: 3 bool isPowerOfTwo(int n) { 4 int temp; 5 if(n==0) 6 return false; 7 if(n==1) 8... 阅读全文
posted @ 2015-07-06 23:17 阿怪123 阅读(120) 评论(0) 推荐(0)