从0到n的二进制数具有相同的字符数/

时间:2018-05-06 16:50:29

标签: c++ binary bitset

我想制作proggram wchich将是从o到n的二进制基数的生成数字,并且我希望thme都具有相同数量的字符。 那是代码:

#include <iostream>
#include <bitset>
#include <string>
#include <vector>
#include <cmath>
#include <stdio.h>
using namespace std;  
vector<string> temp;
int BinaryNumbers(int number)
    { 
        const int HowManyChars= ceil(log(number));
        for(int i = 0; i<number; i++)
        {
            bitset<HowManyChars> binary(i); 
            temp.push_back(binary.to_string());                             
        }
    }

int main(){
    BinaryNumbers(3);
    for(int i=0; i<temp.size();i++)
    {
        cout<<temp[i]<<endl;
    }
    return 0;
}

我的问题是我无法设置bitset&lt;&gt;号码(HowManyChars)&#34; [错误]&#39; HowManyChars&#39;不能出现在常量表达式中#34;

2 个答案:

答案 0 :(得分:0)

可能的解决方案是使用最大大小的bitset来创建字符串。然后只返回字符串中的最后一个计数字符。

答案 1 :(得分:0)

在C ++ 17中有一个新函数to_chars。 其中一个函数(1)以最后一个参数为基础。

// use numeric_limits to find out the maximum number of digits a number can have
constexpr auto reserve_chars = std::numeric_limits< int >::digits10 + 1; // +1 for '\0' at end;

std::array< char, reserve_chars > buffer;

int required_size = 9; // this value is configurable

assert( required_size < reserve_chars ); // a check to verify the required size will fit in the buffer

// C++17 Structured bindings return value. convert value "42" to base 2.
auto [ ptr, err ] = std::to_chars( buffer.data(), buffer.data() + required_size, 42 , 2);

// check there is no error
if ( err == std::errc() )
{
    *ptr = '\0'; // add null character to end
    std::ostringstream str; // use ostringstream to create a string pre-filled with "0".
    str << std::setfill('0') << std::setw(required_size) << buffer.data();

    std::cout << str.str() << '\n';
}