FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc190.java at master · mJackie/leetcode · GitHub
mJackie
/
leetcode
Public
Notifications
You must be signed in to change notification settings
Fork
135
Star
405
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode
/
code
/
lc190.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (24 loc) · 783 Bytes
Breadcrumbs
leetcode
/
code
/
lc190.java
Copy path
File metadata and controls
25 lines (24 loc) · 783 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package
code
;
/*
* 190. Reverse Bits
* 题意:转换为二进制,反转,再输出
* 难度:Easy
* 分类:Bit Manipulation
* 思路:做位移操作,自己没想起来,好好看看
* Tips:注意 >>> 无符号位移 它不会将所处理的值的最高位视为正负符号,所以作位移处理时,会直接在空出的高位填入0
*/
public
class
lc190
{
public
static
void
main
(
String
[]
args
) {
System
.
out
.
println
(
reverseBits
(
10
));
}
// you need treat n as an unsigned value
public
static
int
reverseBits
(
int
n
) {
int
result
=
0
;
for
(
int
i
=
0
;
i
<
32
;
i
++) {
result
+=
n
&
1
;
n
>>>=
1
;
//无视符号右移
if
(
i
<
31
)
result
<<=
1
;
}
return
result
;
}
}
Back
|
FazBrowse Home
|
New Git URL