(筆記) 如何將10進位轉2進位? (C/C++) (C) (STL)

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

posted on   真 OO无双  阅读(39009)  评论(3)    收藏  举报

编辑推荐:
· MySQL索引完全指南:让你的查询速度飞起来
· 一个字符串替换引发的性能血案:正则回溯与救赎之路
· 为什么说方法的参数最好不要超过4个?
· C#.Net 筑基-优雅 LINQ 的查询艺术
· 一个自认为理想主义者的程序员,写了5年公众号、博客的初衷
阅读排行:
· MySQL索引完全指南:让你的查询速度飞起来
· 本地搭建一个对嘴AI工具
· HarmonyOS NEXT仓颉开发语言实现画板案例
· 20. Java JUC源码分析系列笔记-CompletableFuture
· 我用这13个工具,让开发效率提升了5倍!

导航

统计

点击右上角即可分享
微信分享提示