Skip to content

Commit 27036e8

Browse files
authored
feat: update solutions to lcof problem: No.15 (#2862)
1 parent feae0f6 commit 27036e8

12 files changed

+91
-135
lines changed

lcof/面试题15. 二进制中1的个数/README.md

+24-55
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,9 @@ edit_url: https://github.com/doocs/leetcode/edit/main/lcof/%E9%9D%A2%E8%AF%95%E9
6868

6969
### 方法一:位运算
7070

71-
由于 `n & (n - 1)` 会消除 $n$ 的二进制表示中的最后一个 $1$,因此对 $n$ 重复该操作,直到 $n$ 变成 $0$,此时的操作次数即为 $n$ 的二进制表示中的 $1$ 的个数
71+
由于 $n \& (n - 1)$ 可以消除 $n$ 的二进制表示中最右边的 1,因此不断执行 $n \& (n - 1)$,直到 $n = 0$,统计执行次数即可
7272

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)$。
7674

7775
<!-- tabs:start -->
7876

@@ -81,7 +79,11 @@ edit_url: https://github.com/doocs/leetcode/edit/main/lcof/%E9%9D%A2%E8%AF%95%E9
8179
```python
8280
class Solution:
8381
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
8587
```
8688

8789
#### Java
@@ -92,7 +94,7 @@ public class Solution {
9294
public int hammingWeight(int n) {
9395
int ans = 0;
9496
while (n != 0) {
95-
n &= n - 1;
97+
n &= (n - 1);
9698
++ans;
9799
}
98100
return ans;
@@ -108,7 +110,7 @@ public:
108110
int hammingWeight(uint32_t n) {
109111
int ans = 0;
110112
while (n) {
111-
n &= n - 1;
113+
n &= (n - 1);
112114
++ans;
113115
}
114116
return ans;
@@ -119,9 +121,9 @@ public:
119121
#### Go
120122
121123
```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
125127
ans++
126128
}
127129
return
@@ -137,36 +139,25 @@ func hammingWeight(num uint32) (ans int) {
137139
*/
138140
var hammingWeight = function (n) {
139141
let ans = 0;
140-
while (n != 0) {
142+
while (n) {
141143
n &= n - 1;
142144
++ans;
143145
}
144146
return ans;
145147
};
146148
```
147149

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-
163150
<!-- tabs:end -->
164151

165152
<!-- solution:end -->
166153

167-
<!-- solution:start-->
154+
<!-- solution:start -->
155+
156+
### 方法二:位运算(lowbit)
157+
158+
根据位运算的性质,我们知道 $n \& (-n)$ 可以得到 $n$ 的二进制表示中最右边的 $1$,因此不断将 $n$ 减去 $n \& (-n)$,直到 $n = 0$,统计执行次数即可。
168159

169-
### 方法二
160+
时间复杂度 $O(\log n)$,空间复杂度 $O(1)$。
170161

171162
<!-- tabs:start -->
172163

@@ -177,7 +168,7 @@ class Solution:
177168
def hammingWeight(self, n: int) -> int:
178169
ans = 0
179170
while n:
180-
n &= n - 1
171+
n -= n & (-n)
181172
ans += 1
182173
return ans
183174
```
@@ -205,7 +196,7 @@ class Solution {
205196
public:
206197
int hammingWeight(uint32_t n) {
207198
int ans = 0;
208-
while (n != 0) {
199+
while (n) {
209200
n -= n & -n;
210201
++ans;
211202
}
@@ -217,9 +208,9 @@ public:
217208
#### Go
218209
219210
```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
223214
ans++
224215
}
225216
return
@@ -230,26 +221,4 @@ func hammingWeight(num uint32) (ans int) {
230221

231222
<!-- solution:end -->
232223

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-
255224
<!-- problem:end -->
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
class Solution {
2-
public:
3-
int hammingWeight(uint32_t n) {
4-
int ans = 0;
5-
while (n) {
6-
n &= n - 1;
7-
++ans;
8-
}
9-
return ans;
10-
}
1+
class Solution {
2+
public:
3+
int hammingWeight(uint32_t n) {
4+
int ans = 0;
5+
while (n) {
6+
n &= (n - 1);
7+
++ans;
8+
}
9+
return ans;
10+
}
1111
};

lcof/面试题15. 二进制中1的个数/Solution.cs

-10
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
func hammingWeight(num uint32) (ans int) {
2-
for num != 0 {
3-
num &= num - 1
4-
ans++
5-
}
6-
return
1+
func hammingWeight(n uint32) (ans int) {
2+
for n != 0 {
3+
n &= n - 1
4+
ans++
5+
}
6+
return
77
}
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
public class Solution {
2-
// you need to treat n as an unsigned value
3-
public int hammingWeight(int n) {
4-
int ans = 0;
5-
while (n != 0) {
6-
n &= n - 1;
7-
++ans;
8-
}
9-
return ans;
10-
}
1+
public class Solution {
2+
// you need to treat n as an unsigned value
3+
public int hammingWeight(int n) {
4+
int ans = 0;
5+
while (n != 0) {
6+
n &= (n - 1);
7+
++ans;
8+
}
9+
return ans;
10+
}
1111
}

lcof/面试题15. 二进制中1的个数/Solution.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55
var hammingWeight = function (n) {
66
let ans = 0;
7-
while (n != 0) {
7+
while (n) {
88
n &= n - 1;
99
++ans;
1010
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
class Solution:
2-
def hammingWeight(self, n: int) -> int:
3-
return n.bit_count()
1+
class Solution:
2+
def hammingWeight(self, n: int) -> int:
3+
ans = 0
4+
while n:
5+
n &= n - 1
6+
ans += 1
7+
return ans
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
class Solution {
2-
public:
3-
int hammingWeight(uint32_t n) {
4-
int ans = 0;
5-
while (n != 0) {
6-
n -= n & -n;
7-
++ans;
8-
}
9-
return ans;
10-
}
1+
class Solution {
2+
public:
3+
int hammingWeight(uint32_t n) {
4+
int ans = 0;
5+
while (n) {
6+
n -= n & -n;
7+
++ans;
8+
}
9+
return ans;
10+
}
1111
};
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
func hammingWeight(num uint32) (ans int) {
2-
for num != 0 {
3-
num -= num & -num
4-
ans++
5-
}
6-
return
1+
func hammingWeight(n uint32) (ans int) {
2+
for n != 0 {
3+
n -= n & -n
4+
ans++
5+
}
6+
return
77
}
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
public class Solution {
2-
// you need to treat n as an unsigned value
3-
public int hammingWeight(int n) {
4-
int ans = 0;
5-
while (n != 0) {
6-
n -= n & -n;
7-
++ans;
8-
}
9-
return ans;
10-
}
1+
public class Solution {
2+
// you need to treat n as an unsigned value
3+
public int hammingWeight(int n) {
4+
int ans = 0;
5+
while (n != 0) {
6+
n -= n & -n;
7+
++ans;
8+
}
9+
return ans;
10+
}
1111
}
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
class Solution:
2-
def hammingWeight(self, n: int) -> int:
3-
ans = 0
4-
while n:
5-
n &= n - 1
6-
ans += 1
7-
return ans
1+
class Solution:
2+
def hammingWeight(self, n: int) -> int:
3+
ans = 0
4+
while n:
5+
n -= n & (-n)
6+
ans += 1
7+
return ans

lcof/面试题15. 二进制中1的个数/Solution3.py

-7
This file was deleted.

0 commit comments

Comments
 (0)