十进制转换为二进制和返回数组 [英] Convert decimal to binary and return array

查看:273
本文介绍了十进制转换为二进制和返回数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有可能是做一个聪明的方式,但无论如何,我得到这个错误:

probably there is a smart way to do that , but anyway i get error on this :

-(int*)decimalBinary:(int)decimal
{
    int i=0;
    int *bin;
    while (decimal!=0)
    {
        bin[i]=decimal%2;
        decimal=decimal/2;
        i++;
    }

    return bin;

}

在模线。为什么呢?
和什么更好的方式来得到它的阵列?

on the modulo line . why ? And whats the better way to get it to array ?

推荐答案

以下code是的调整的距离 这个答案 如何打印二进制格式的整数。 保存二进制数字变成一个int数组添加到下面的code:

The following code is adapted from This answer on how to print an integer in binary format. Storing "binary digits" into an int array is added into the code below:

#include <stdio.h>      /* printf */
#include <stdlib.h>     /* strtol */

const char *byte_to_binary(long x);

int main(void)
{
    long lVal;
    int i, len, array[18];
    char buf[18];

    {   /* binary string to int */
        char *tmp;
        char *b = "11010111001010110";

        lVal=strtol(b, &tmp, 2); //convert string in "base 2" format to long int
        printf("%d\n", lVal);
    }
    {
        printf("%s", byte_to_binary(lVal));
        /* byte to binary string */
        sprintf(buf,"%s", byte_to_binary(lVal));
    }
    len = strlen(buf);
    for(i=0;i<len;i++)
    {   //store binary digits into an array.
        array[i] = (buf[i]-'0');    
    }
    getchar();
    return 0;
}

const char *byte_to_binary(long x)
{
    static char b[17]; //16 bits plus '\0'
    b[0] = '\0';
    char *p = b;  

    int z;
    for (z = 65536; z > 0; z >>= 1)    //2^16
    {
        *p++ = (x & z) ? '1' : '0';
    }
    return b;
}

这篇关于十进制转换为二进制和返回数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆