輸入乙個整數,輸出該數二進位制表示中1的個數。其中負數用補碼表示。
#include
#include
using namespace std;
class solution
// cout << "次數為" << times ;int
main()
我寫不出來的演算法
規律:乙個數減去1然後與原來的數進行與運算,會將這個數最右邊的1變成0;(雖然寫不出,但還是學學嘛=-=)這種演算法就是乙個數裡面有多少個1就迴圈多少次,
int
numberof1_2
(int n)
return count;
}
unsigned
int a =1,
int b =-2
;// a b 都是無符號整數 這樣編譯不了,可能是有新版本吧,
unsigned
int a =1;
int b =-2
;int c =-2
; cout << b << endl;
//-2
if(a + c >0)
//因此b,c在計算機中是以補碼的形式存放,0xfffffff(1110) ==>無符號表示的就是2^32-2
cout << a + b << endl;
//4294967295 ==>>2^32-1
int res =
0xffffffff
;unsigned
int rea =
0xffffffff
;cout <<
0xffffffff
-14294967295
*/
unsigned
int test1 =
2147483648
;test1 = test1 <<1;
cout <<
"test1: "
int test =1;
test =
(test <<32)
;unsigned
int i =1;
cout <<
"test2 :"
"test3:"
<<
(i<<32)
*test1: 0
test2 :1
test3:1
*/
對上述**的總結: 劍指Offer 二進位制中1的個數
題目 請實現乙個函式,輸入乙個整數,輸出該數二進位制表示中1的個數。例如把9表示成二進位制是1001,有2位是1。因此如果輸入9,該函式輸出2。1 可能引起死迴圈的解法 先判斷整數二進位制表示中最右邊一位是不是1。接著把輸入的整數右移一位,此時原來處於從右邊數起的第二位被移到最右邊了,再判斷最右邊的...
劍指Offer 二進位制中1的個數
輸入乙個整數,輸出該數二進位制表示中1的個數。其中負數用補碼表示。錯誤解法 public class solution return num 若輸入的數字為負數,因為為補碼表示方式,所以高位一直是1,所以會陷入死迴圈。方法一 從高位開始計算 public class solution return ...
劍指OFFER 二進位制中1的個數
public class solution return count 答案正確 恭喜!您提交的程式通過了所有的測試用例 分析一下 這段小小的 很是巧妙。如果乙個整數不為0,那麼這個整數至少有一位是1。如果我們把這個整數減1,那麼原來處在整數最右邊的1就會變為0,原來在1後面的所有的0都會變成1 如果...