Skip to content

Commit

Permalink
auto commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CyC2018 committed Jul 19, 2018
1 parent c0c0613 commit c66d151
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion notes/代码风格规范.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<!-- GFM-TOC -->


- [Twitter Java Style Guide](https://github.com/twitter/commons/blob/master/src/java/com/twitter/common/styleguide.mde)
- [Twitter Java Style Guide](https://github.com/twitter/commons/blob/master/src/java/com/twitter/common/styleguide.md)
- [Google Java Style Guide](http://google.github.io/styleguide/javaguide.html)
2 changes: 1 addition & 1 deletion notes/剑指 offer 题解.md
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ public int NumberOf1(int n) {

### n&(n-1)

O(logM) 时间复杂度解法,其中 M 表示 1 的个数。
O(M) 时间复杂度解法,其中 M 表示 1 的个数。

该位运算是去除 n 的位级表示中最低的那一位。

Expand Down

0 comments on commit c66d151

Please sign in to comment.