在我的main.cpp
中:
#include <cstdio>
#include "hashtable.h"
int main() {
printf("1hello");
freopen("2.txt", "w", stdout);
printf("2hello");
freopen("1.txt", "r", stdin);
printf("3hello");
int type;
char buffer[1000];int data;
hashtable table(10000, new naive_hashing(), new linear_probe());
while (true) {
scanf("%d", &type);
if (type == 0) {
scanf("%s", buffer);scanf("%d", &data);
table.insert(hash_entry(buffer, data));
}
else if (type == 1) {
scanf("%s", buffer);
printf("%d\n", table.query(buffer));
}
else break;
}
return 0;
}
1.txt
:
0 dhu_try 3039
0 shirin 3024
0 SiamakDeCode 2647
0 huanghansheng 233
1 dhu
1 dhu_try
1 shirin
1 siamakdecode0
1 huanghansheng
2
output
:
1hello
正如你所看到的,程序在进入第一个freopen
函数后暂停了。我已经检查了文档,但仍然找不到它停止运行的原因。有人能帮助我吗?:pleasing_face:
1条答案
按热度按时间sq1bmfud1#
您将
stdout
的所有输出重定向到文件2.txt
时这就是为什么在
freopen
之后没有printf
输出显示在控制台上的原因。查看文件2.txt
,你很可能会在那里看到输出-如果freopen
成功的话。总是检查那些可能失败的函数是否成功了。