@@ -68,11 +68,9 @@ edit_url: https://github.com/doocs/leetcode/edit/main/lcof/%E9%9D%A2%E8%AF%95%E9
68
68
69
69
### 方法一:位运算
70
70
71
- 由于 ` n & (n - 1)` 会消除 $n$ 的二进制表示中的最后一个 $1$,因此对 $n$ 重复该操作,直到 $n$ 变成 $0$,此时的操作次数即为 $n$ 的二进制表示中的 $1$ 的个数 。
71
+ 由于 $n \ & (n - 1)$ 可以消除 $n$ 的二进制表示中最右边的 1,因此不断执行 $n \& (n - 1)$,直到 $n = 0$,统计执行次数即可 。
72
72
73
- 或者,我们可以用 ` lowbit ` 函数来获取 $n$ 的二进制表示中的最后一个 $1$,然后将 $n$ 减去这个 $1$,再重复该操作,直到 $n$ 变成 $0$,此时的操作次数即为 $n$ 的二进制表示中的 $1$ 的个数。` lowbit(x)=x&(-x) ` 。
74
-
75
- 时间复杂度 $O(\log n)$,空间复杂度 $O(1)$。其中 $n$ 为输入的整数。
73
+ 时间复杂度 $O(\log n)$,空间复杂度 $O(1)$。
76
74
77
75
<!-- tabs:start -->
78
76
@@ -81,7 +79,11 @@ edit_url: https://github.com/doocs/leetcode/edit/main/lcof/%E9%9D%A2%E8%AF%95%E9
81
79
``` python
82
80
class Solution :
83
81
def hammingWeight (self , n : int ) -> int :
84
- return n.bit_count()
82
+ ans = 0
83
+ while n:
84
+ n &= n - 1
85
+ ans += 1
86
+ return ans
85
87
```
86
88
87
89
#### Java
@@ -92,7 +94,7 @@ public class Solution {
92
94
public int hammingWeight (int n ) {
93
95
int ans = 0 ;
94
96
while (n != 0 ) {
95
- n &= n - 1 ;
97
+ n &= ( n - 1 ) ;
96
98
++ ans;
97
99
}
98
100
return ans;
@@ -108,7 +110,7 @@ public:
108
110
int hammingWeight(uint32_t n) {
109
111
int ans = 0;
110
112
while (n) {
111
- n &= n - 1;
113
+ n &= ( n - 1) ;
112
114
++ans;
113
115
}
114
116
return ans;
@@ -119,9 +121,9 @@ public:
119
121
#### Go
120
122
121
123
```go
122
- func hammingWeight(num uint32) (ans int) {
123
- for num != 0 {
124
- num &= num - 1
124
+ func hammingWeight(n uint32) (ans int) {
125
+ for n != 0 {
126
+ n &= n - 1
125
127
ans++
126
128
}
127
129
return
@@ -137,36 +139,25 @@ func hammingWeight(num uint32) (ans int) {
137
139
*/
138
140
var hammingWeight = function (n ) {
139
141
let ans = 0 ;
140
- while (n != 0 ) {
142
+ while (n) {
141
143
n &= n - 1 ;
142
144
++ ans;
143
145
}
144
146
return ans;
145
147
};
146
148
```
147
149
148
- #### C#
149
-
150
- ``` cs
151
- public class Solution {
152
- public int HammingWeight (uint n ) {
153
- int ans = 0 ;
154
- while (n != 0 ) {
155
- n &= (n - 1 );
156
- ++ ans ;
157
- }
158
- return ans ;
159
- }
160
- }
161
- ```
162
-
163
150
<!-- tabs: end -->
164
151
165
152
<!-- solution: end -->
166
153
167
- <!-- solution: start-- >
154
+ <!-- solution: start -->
155
+
156
+ ### 方法二:位运算(lowbit)
157
+
158
+ 根据位运算的性质,我们知道 $n \& (-n)$ 可以得到 $n$ 的二进制表示中最右边的 $1$,因此不断将 $n$ 减去 $n \& (-n)$,直到 $n = 0$,统计执行次数即可。
168
159
169
- ### 方法二
160
+ 时间复杂度 $O(\log n)$,空间复杂度 $O(1)$。
170
161
171
162
<!-- tabs: start -->
172
163
@@ -177,7 +168,7 @@ class Solution:
177
168
def hammingWeight (self , n : int ) -> int :
178
169
ans = 0
179
170
while n:
180
- n & = n - 1
171
+ n - = n & ( - n)
181
172
ans += 1
182
173
return ans
183
174
```
@@ -205,7 +196,7 @@ class Solution {
205
196
public:
206
197
int hammingWeight(uint32_t n) {
207
198
int ans = 0;
208
- while (n != 0 ) {
199
+ while (n) {
209
200
n -= n & -n;
210
201
++ans;
211
202
}
@@ -217,9 +208,9 @@ public:
217
208
#### Go
218
209
219
210
```go
220
- func hammingWeight(num uint32) (ans int) {
221
- for num != 0 {
222
- num -= num & -num
211
+ func hammingWeight(n uint32) (ans int) {
212
+ for n != 0 {
213
+ n -= n & -n
223
214
ans++
224
215
}
225
216
return
@@ -230,26 +221,4 @@ func hammingWeight(num uint32) (ans int) {
230
221
231
222
<!-- solution: end -->
232
223
233
- <!-- solution: start-- >
234
-
235
- ### 方法三
236
-
237
- <!-- tabs: start -->
238
-
239
- #### Python3
240
-
241
- ``` python
242
- class Solution :
243
- def hammingWeight (self , n : int ) -> int :
244
- ans = 0
245
- while n:
246
- n -= n & (- n)
247
- ans += 1
248
- return ans
249
- ```
250
-
251
- <!-- tabs: end -->
252
-
253
- <!-- solution: end -->
254
-
255
224
<!-- problem: end -->
0 commit comments