輕松實(shí)現(xiàn)C/C++各種常見進(jìn)制相互轉(zhuǎn)換
其它進(jìn)制轉(zhuǎn)為十進(jìn)制
在實(shí)現(xiàn)這個(gè)需求之前,先簡(jiǎn)單介紹一個(gè)c標(biāo)準(zhǔn)庫中的一個(gè)函數(shù):
long strtol( const char *str, char **str_end, int base);
參數(shù)詳細(xì)說明請(qǐng) 參考文檔
注意:這個(gè)函數(shù)在c標(biāo)準(zhǔn)庫stdlib中,所以需要 #include<cstdlib>
用法參考
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
int main(void)
{
// parsing with error handling
const char *p = "10 200000000000000000000000000000 30 -40 junk";
printf("Parsing '%s':\n", p);
char *end;
for (long i = strtol(p, &end, 10);p != end;i = strtol(p, &end, 10))
{
printf("'%.*s' -> ", (int)(end-p), p);
p = end;
if (errno == ERANGE){
printf("range error, got ");
errno = 0;
}
printf("%ld\n", i);
}
// parsing without error handling
printf("\"1010\" in binary --> %ld\n", strtol("1010",NULL,2));
printf("\"12\" in octal --> %ld\n", strtol("12",NULL,8));
printf("\"A\" in hex --> %ld\n", strtol("A",NULL,16));
printf("\"junk\" in base-36 --> %ld\n", strtol("junk",NULL,36));
printf("\"012\" in auto-detected base --> %ld\n", strtol("012",NULL,0));
printf("\"0xA\" in auto-detected base --> %ld\n", strtol("0xA",NULL,0));
printf("\"junk\" in auto-detected base --> %ld\n", strtol("junk",NULL,0));
}
Output
Parsing '10 200000000000000000000000000000 30 -40 junk': '10' -> 10 ' 200000000000000000000000000000' -> range error, got 9223372036854775807 ' 30' -> 30 ' -40' -> -40 "1010" in binary --> 10 "12" in octal --> 10 "A" in hex --> 10 "junk" in base-36 --> 926192 "012" in auto-detected base --> 10 "0xA" in auto-detected base --> 10 "junk" in auto-detected base --> 0
更多詳細(xì)說明請(qǐng) 參考文檔
接下來使用這個(gè)函數(shù)來實(shí)現(xiàn)其它進(jìn)制轉(zhuǎn)為十進(jìn)制的需求,具體請(qǐng)參考代碼:
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
//把8進(jìn)制的17轉(zhuǎn)化為10進(jìn)制打印輸出
string str = "17";
char *tmp ;
long result = strtol(str.c_str(),&tmp,8);
cout<<result;
return 0;
}
Output
15
十進(jìn)制轉(zhuǎn)為其他進(jìn)制
目前沒有找到可以使用的庫函數(shù)來方便的實(shí)現(xiàn)這個(gè)需求,所以自己實(shí)現(xiàn)了一下,具體請(qǐng)參考代碼:
#include<iostream>
#include<algorithm>
using namespace std;
//digital為10進(jìn)制數(shù),r為需要轉(zhuǎn)換的目標(biāo)進(jìn)制,返回目標(biāo)進(jìn)制數(shù)
string dtox(int digital,int r){
string result="";
const char s[37]="0123456789abcdefghijklmnopqrstuvwxyz";
if(digital==0){
return "0";
}
while(digital!=0){
int tmp =digital%r;
result+=s[tmp];
digital/=r;
}
reverse(result.begin(),result.end());
return result;
}
int main(){
cout<<"十進(jìn)制10轉(zhuǎn)為16進(jìn)制結(jié)果:"<<dtox(10,16)<<endl;
cout<<"十進(jìn)制10轉(zhuǎn)為8進(jìn)制結(jié)果:"<<dtox(10,8)<<endl;
cout<<"十進(jìn)制10轉(zhuǎn)為2進(jìn)制結(jié)果:"<<dtox(10,2)<<endl;
cout<<"十進(jìn)制10轉(zhuǎn)為10進(jìn)制結(jié)果:"<<dtox(10,10)<<endl;
}
Output:
十進(jìn)制10轉(zhuǎn)為16進(jìn)制結(jié)果:a 十進(jìn)制10轉(zhuǎn)為8進(jìn)制結(jié)果:12 十進(jìn)制10轉(zhuǎn)為2進(jìn)制結(jié)果:1010 十進(jìn)制10轉(zhuǎn)為10進(jìn)制結(jié)果:10
實(shí)現(xiàn)效果還算理想,另外,這個(gè)函數(shù)還可以把10進(jìn)制數(shù)轉(zhuǎn)化為不常用的其他進(jìn)制,不局限于2,8,10,16等常見進(jìn)制。但是r的有效范圍應(yīng)該為2-36。
另外,函數(shù)并沒有考慮負(fù)數(shù)以及浮點(diǎn)數(shù),r不合法的情況
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- C++ 十進(jìn)制轉(zhuǎn)換為二進(jìn)制的實(shí)例代碼
- C++中幾種將整數(shù)轉(zhuǎn)換成二進(jìn)制輸出的方法總結(jié)
- C++實(shí)現(xiàn)讀入二進(jìn)制數(shù)并轉(zhuǎn)換為十進(jìn)制輸出
- c++實(shí)現(xiàn)十進(jìn)制轉(zhuǎn)換成16進(jìn)制示例
- C++實(shí)現(xiàn)十六進(jìn)制字符串轉(zhuǎn)換為十進(jìn)制整數(shù)的方法
- 編寫C語言程序進(jìn)行進(jìn)制轉(zhuǎn)換的問題實(shí)例
- C++實(shí)現(xiàn)數(shù)字轉(zhuǎn)換為十六進(jìn)制字符串的方法
- C語言用棧實(shí)現(xiàn)十進(jìn)制轉(zhuǎn)換為二進(jìn)制的方法示例
- C語言進(jìn)制轉(zhuǎn)換代碼分享
相關(guān)文章
C++內(nèi)存數(shù)據(jù)結(jié)構(gòu)與二進(jìn)制文件之間的序列化和反序列化方式
這篇文章主要介紹了C++內(nèi)存數(shù)據(jù)結(jié)構(gòu)與二進(jìn)制文件之間的序列化和反序列化方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-08-08
c++中l(wèi)og4cplus日志庫使用的基本步驟和示例代碼
這篇文章主要給大家介紹了關(guān)于c++中l(wèi)og4cplus日志庫使用的相關(guān)資料,log4cplus是一款開源的c++日志庫,具有線程安全,靈活,以及多粒度控制的特點(diǎn),log4cplus可以將日志按照優(yōu)先級(jí)進(jìn)行劃分,使其可以面向程序的調(diào)試,運(yùn)行,測(cè)試,后期維護(hù)等軟件全生命周期,需要的朋友可以參考下2024-06-06
利用C語言模擬實(shí)現(xiàn)qsort,strcpy,strcat,strcmp函數(shù)
這篇文章主要為大家詳細(xì)介紹了如何通過C語言模擬實(shí)現(xiàn)qsort(采用冒泡的方式),strcpy,strcat,strcmp等函數(shù),文中的示例代碼講解詳細(xì),感興趣的可以了解一下2022-11-11

