diff --git "a/notes/\344\273\243\347\240\201\351\243\216\346\240\274\350\247\204\350\214\203.md" "b/notes/\344\273\243\347\240\201\351\243\216\346\240\274\350\247\204\350\214\203.md" index b1ce81379b..dedada7dad 100644 --- "a/notes/\344\273\243\347\240\201\351\243\216\346\240\274\350\247\204\350\214\203.md" +++ "b/notes/\344\273\243\347\240\201\351\243\216\346\240\274\350\247\204\350\214\203.md" @@ -2,5 +2,5 @@ -- [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) diff --git "a/notes/\345\211\221\346\214\207 offer \351\242\230\350\247\243.md" "b/notes/\345\211\221\346\214\207 offer \351\242\230\350\247\243.md" index c0c5412fbb..20963e4631 100644 --- "a/notes/\345\211\221\346\214\207 offer \351\242\230\350\247\243.md" +++ "b/notes/\345\211\221\346\214\207 offer \351\242\230\350\247\243.md" @@ -804,7 +804,7 @@ public int NumberOf1(int n) { ### n&(n-1) -O(logM) 时间复杂度解法,其中 M 表示 1 的个数。 +O(M) 时间复杂度解法,其中 M 表示 1 的个数。 该位运算是去除 n 的位级表示中最低的那一位。