【Leetcode_easy】868. Binary Gap
problem
solution1:
class Solution { public: int binaryGap(int N) { int res = 0; vector<int> pos; int k = 0; while(N>0) { if(N&1==1) pos.push_back(k); k++; N >>=1;//errr... } for(int i=1; i<pos.size(); ++i) { res = max(res, pos[i]-pos[i-1]); } return res; } };
solution2:
class Solution { public: int binaryGap(int N) { int res = 0, last = -1, k = 0; while(N>0) { if(N&1==1) { if(last>=0) res = max(res, k-last); last = k; } N>>=1;//errr... k++; } return res; } };
参考
1. Leetcode_easy_868. Binary Gap;
2. Grandyang;
完
各美其美,美美与共,不和他人作比较,不对他人有期待,不批判他人,不钻牛角尖。
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
浙公网安备 33010602011771号