Search Results

2
votes
3answers
853 views

C++ Huffman Code Header

Hello, basically, I've got my Huffman table as std::map<std::string, char> ciMap; Where string is the bit pattern and char is the value represented …
0
votes
1answer
329 views

C++ Problem Stuffing 8 bits into a char

This is weird. It is a trivial problem: A std::string with bits with length multiple of 8, the first 8 is: "10011100". //Convert each 8 bits of encoded string to bytes unsig …
3
votes
4answers
1k views

C/C++: Array size at run time w/o dynamic allocation is allowed?

I've been using C++ for a few years, and today I don't know if this is a mere brainfart or what, but how can this be perfectly legal: int main(int argc, char **argv) { size_t si …
2
votes
4answers
509 views

C++: Free easy way to draw graphs and charts?

I am doing a little exploring simulation and I want to show the graphs to compare the performance among the algorithms during run-time. What library comes to your mind? I highly prefer thos …