如何將10進位轉2進位?

Abstract
printf()只能顯示10、8、16進位的值,卻無法顯示2進位的值,但有時候我們會希望能直接顯示2進位數字。

Introduction
使用環境:Visual C++ 8.0 / Visual Studio 2005

Method 1:
這是從C Primer Plus 5/e改寫的,使用bit運算來將10進位轉2進位,相當漂亮的寫法。

decimal2binary.c / C

1 /* 
2 (C) OOMusou 2008 http://oomusou.cnblogs.com
3 
4 Filename    : decimal2binary.c
5 Compiler    : Visual C++ 8.0
6 Description : Demo how to convert deciaml to binary by C
7 Release     : 07/22/2008 1.0
8 */
9 #include <stdio.h>
10 
11 char* itobs(int n, char *ps) {
12   int size = 8 * sizeof(n);
13   int i = size -1;
14  
15   while(i+1) {
16     ps[i--] = (1 & n) + '0';
17     n >>= 1;
18   }
19  
20   ps[size] = '\0';
21   return ps;
22 }
23 
24 int main() {
25   int n = 8;
26   char s[8 * sizeof(n) + 1];
27  
28   printf("%d = %s\n", n, itobs(n,s));
29 }


執行結果

8 = 00000000000000000000000000001000


16行

ps[i--] = (1 & n) + '0';


對n做mask,將第0 bit取出來,這樣的寫法比%2快,因為取出是個int,所以透過 + '0'轉成char,存入字串陣列。

17行

n >>= 1;


0 bit處理完,處理1 bit...以此類推。

15行

while(i+1) {


相當於while(i >=0)

20行

ps[size] = '\0';


將字串收尾。

Method 2:
若能用C++,就有很簡單的解法。

decimal2binary.cpp / C++

1 /* 
2 (C) OOMusou 2008 http://oomusou.cnblogs.com
3 
4 Filename    : decimal2binary.cpp
5 Compiler    : Visual C++ 8.0
6 Description : Demo how to convert deciaml to binary by C++
7 Release     : 07/22/2008 1.0
8 */
9 #include <iostream>
10 #include <bitset>
11 
12 using namespace std;
13 
14 int main() {
15   int n = 8;
16   bitset<sizeof(n) * 8> s(n);
17  
18   cout << n << " = " << s << endl;
19 }


執行結果

8 = 00000000000000000000000000001000


使用bitset後,cout出來就是2進位了。

Conclusion
另外一種寫法就是用%2搭配遞迴,不過既然bit寫法速度快又省記憶體,就沒多討論了。

Reference
Stephen Prata,C Primer Plus 5/e

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值