我有一个将作为字符读入的二进制文件。每个字符都被其他人向左移动了未知次数(假设使用换行)。我希望能够读取每个字符,然后将 shift 向右换行(我猜要移动的次数必须手动计算,因为我还没有想出另一种方法)。
所以,我目前的想法是我读入一个字符,用 temp 创建一个副本,然后使用 XOR:
char letter; //will hold the read in letter
char temp; //will hold a copy of the letter
while(file.read(&letter, sizeof(letter)) //letter now holds 00001101
{
temp = letter; //temp now holds 00001101
letter >>= 1; //shift 1 position to the right, letter now holds 00000110
temp <<= 7; //shift to the left by (8-1), which is 7, temp now holds 10000000
letter ^= temp; //use XOR to get the wrap, letter now holds 10000110
cout << letter;
}
这在我疲惫的头脑中是有道理的,但它不起作用......我不知道为什么。char 的大小是 1 个字节,所以我想我只需要处理 8 位。
任何帮助,将不胜感激。
编辑:解决。非常感谢大家。爱死这个社区,你们太棒了!