huffmanFile.open("code.txt");
while(huffmanFile.peek() != EOF)
{
cin >> letters[c] >> numbers[c];
c++;
}
huffmanFile.close();
输入文件:A 23 B 35 C 47 D 0 E 12 F 11 G 92 H 18 I 17
执行此操作后,我尝试从我的 main 函数中输出 c 并且它不会退出 while 循环。我试过调试无济于事。我已经将它与我编写的许多其他程序进行了比较,但仍然没有运气。