我使用Visual Studios在C ++中编码,我的代码只接受名为“perm15K.txt”的文件。如果我尝试输入“perm30K.txt”或“sorted15K.txt”,我的代码将不会从中读取。它不会输出文件错误,但它不会让我输入我想要执行的搜索。
#include "stdafx.h"
#include "binarysearchtree.h"
#include "redblacktree.h"
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <ctime>
#include <chrono>
using namespace std;
int main()
{
struct bstnodes *root = NULL;
std::ifstream in;
std::ofstream out;
std::stringstream buffer;
buffer << in.rdbuf();
std::string test = buffer.str();
std::cout << test << std::endl << std::endl;
ifstream myFile;
string input;
string output;
cout << "Name of the input file? (ie. perm15K.txt)";
getline(cin, input);
myFile.open(input.c_str());
if (myFile.fail())
{
cout << "Error with file\n";
}
for (int j = 0; j < 10; j++)
{
cout << "Which search? Pleast enter bst or redblack\n";
binarysearchtree temp;
redblacktree temp1;
while (!myFile.eof())
{
while (getline(myFile, input)) {
myFile >> input;
string words = input;
temp.insert(words);
temp1.rbinsert(words);
}
}
getline(cin, input);
if (input == "bst")
{
cout << "\nSearch for what word in the tree\n";
getline(cin, input);
temp.insert(input);
clock_t start_s = clock();
std::cout << "Match Found: " << temp.search(input) << std::endl;
clock_t stop_s = clock();
double sum = ((double)(stop_s - start_s));
cout << endl << "Time: " << sum << " seconds" << endl;
cout << "\nSearch for what word in the tree\n";
getline(cin, input);
}
if (input == "redblack")
{
cout << "\nSearch for what word in the tree\n";
getline(cin, input);
temp1.rbinsert(input);
clock_t start_s = clock();
temp1.rbsearch(input);
std::cout << "Match Found: ";
clock_t stop_s = clock();
double sum = ((double)(stop_s - start_s));
cout << endl << "Time: " << sum << " seconds" << endl;
cout << "\nSearch for what word in the tree\n";
getline(cin, input);
}
myFile.close();
return 0;
}
}
非常感谢任何帮助解决我的问题。就好像我被困在一个无尽的循环中。我一直试图找到问题几个小时,但找不到解决方案。
答案 0 :(得分:1)
可能,如果文件打开失败,!myFile.eof()
永远不会为假,因为myFile.getline()
的行为不符合预期(无限循环)。
如果打开失败,您应该在错误消息后返回。
此外,您应该while(myFile.getline())
,而不是检查eof。
答案 1 :(得分:0)
尝试查找Visual Studio放置可执行文件的位置,并查看其他文本文件是否存在。
你的打印陈述也应该是cout&lt;&lt; “text”&lt;&lt; ENDL; 如果用“\ n”结束它们,可能实际上并没有刷新打印缓冲区,这可能会导致错误输出丢失。