Merge pull request #524 from Codywei/patch-1

Update Leetcode 题解.md
This commit is contained in:
郑永川 2019-01-02 14:42:40 +08:00 committed by GitHub
commit 4003aa2e90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6675,7 +6675,7 @@ x ^ x = 0 x & x = x x | x = x
要得到只有第 i 位为 1 的 mask将 1 向左移动 i-1 位即可1<<(i-1) 。例如 1<<4 得到只有第 5 位为 1 的 mask 00010000。
要得到 1 到 i 位为 1 的 mask1<<(i+1)-1 即可,例如将 1<<(4+1)-1 = 00010000-1 = 00001111。
要得到 1 到 i 位为 1 的 mask(1<<i)-1 即可,例如将 (1<<4)-1 = 00010000-1 = 00001111。
要得到 1 到 i 位为 0 的 mask只需将 1 到 i 位为 1 的 mask 取反,即 \~(1<<(i+1)-1)。