バイトのストリームを、たまたま1文字あたり6ビットの文字エンコードに変換するという特定の要件があります。
Here's an example:
Input: 0x50 0x11 0xa0
Character Table:
010100 T
000001 A
000110 F
100000 SPACE
Output: "TAF "
Logically I can understand how this works:
Taking 0x50 0x11 0xa0 and showing as binary:
01010000 00010001 10100000
Which is "TAF ".
これをプログラムで行うための最良の方法は何ですか(擬似コードまたはc ++)。ありがとうございました!