使用移位操做把十進制轉換爲二進制與十六進制字符串輸出

函數原型:函數

1 //轉二進制
2 char *ConvertTo2String(long number);
3 //轉十六進制
4 char *ConvertTo16String(long number);

 

思路:spa

  轉換二進制很簡單,二步操做便可完成,code

         1:循環對數字1左移31-i(i={0,31})位(從高位開始的),再與把number做位與操做,blog

       2:再把剛纔的結果經過右移31-i  (i={0,31}) 位得出每一位是否爲0仍是1,字符串

  這樣就獲得了每一位的二進制位,再把這些二進制位拼成字符串就OK了!原型

 1 char *ConvertTo2String(long number)
 2 {
 3      char *output = NULL;
 4      output = (char*)malloc(33);    //include '\0'
 5       
 6      int i = 0;
 7      for(;i<32;i++)
 8      {
 9          output[i] = number & (1<<31-i);
10          output[i] = output[i] >> 31-i;
11          output[i] = (output[i] == 0) ? '0' : '1';
12      }
13      output[i] = '\0';
14      return output
15 }

 

 

轉換十六進制麻煩一點,要考慮字母的狀況class

 1 char * ConvertTo16String(long number)
 2 {
 3     char *output= NULL;
 4     char *temp = NULL;
 5  
 6     output= (char*) malloc(11);
 7  
 8     output[0] = '0';
 9     output[1] = 'x';
10     output[10] = '\0';
11     temp = output+ 2;
12  
13     for(int i = 0; i<8; i++)
14     {
15         temp[i] = (char)(number<< 4 * i >> 28);    //先左移4*i,再右移28,每一次處理4位
16         temp[i] = temp[i]>=0 ? temp[i] : temp[i]+16;    //爲轉換爲A~F的字母做準備
17         temp[i] = temp[i] < 10 ? temp[i]+48 : temp[i]+55;   //轉字母
18     }
19     
20     return output;
21 }
相關文章
相關標籤/搜索