标签:style amp ber while leetcode 二进制 color pre span
要求求出在一个序列中的所有数字的二进制的和,那么会发现左边相与相等即可的,则可以利用最大值的不断右移来实现的。
class Solution { public: int rangeBitwiseAnd(int m, int n) { int t=INT_MAX; while((m&t)!=(n&t)){ t<<=1; } return m&t; } };
leetcode 201.Bitwise AND of Numbers Range
标签:style amp ber while leetcode 二进制 color pre span
原文地址:https://www.cnblogs.com/newnoobbird/p/9636071.html