I can read a file line my line and I know the fundamentals of Binary Search. how can i make my strings get into a vector or an array where i can call my Binsearch function and return true or false?
I have most of it.
现在测试文件, 但基本上我逐行读取一个文件,逐行打印以证明... 将字符串放入矢量 调用我的BS函数来搜索包含其他文本文件的字符串...
我的文件内容并不重要,除了字符串都在1列之外..
#include <cstdlib>
#include <vector>
#include <string>
#include <fstream>
#include <iostream>
using namespace std;
int binarySearch(vector<string> list, string str)
{
int first, mid, last;
bool found;
first = 0;
last = list.size()-1;
found = false;
while(!found&&first<=last)
{
mid=(first+last)/2;
if(list[mid]==str)
found = true;
else if(list[mid]>str)
last=mid-1;
else
first=mid+1;
}
if(found)
return mid;
else
return -1;
}
/////////////////////////////////////////////// ////////////////////////////////////////////////// ////////////////////////////////////////////////// ////////////////////
int main() {
vector<string> list;
string str;
ifstream infile;
infile.open("testdata.txt");
if (!infile)
cout<<"Input file cannot be openned!"<<endl;
cout<<"---------------------------------"<<endl;
cout<<"List of words inserted into Trie:"<<endl;
cout<<"---------------------------------"<<endl;
cout<<endl;
string wordLine;
while (!infile.eof()){
infile >> wordLine;
list.push_back(wordLine); //this is my attempt to put strings into vector
cout<<wordLine<<endl;
}
ifstream searchFile;
searchFile.open("searchdata.txt");
if(!searchFile)
cout<<"Search file cannot be openned!"<<endl;
string searchLine;
int loc =binarySearch(list, str);
while (!searchFile.eof()){
searchFile >> searchLine;
if (loc == -1)
cout << searchLine <<" => FOUND!" << endl;
else
cout << searchLine <<" => NOT FOUND." <<endl;
cout << searchLine << endl;
return 0;
}
}
答案 0 :(得分:3)
你可能不想做所有这些,c ++标准库适合你:
std::sort(list.begin(),list.end());
binary_search (list.begin(), list.end(), str);
这两行足以在向量上进行二进制搜索。