Reputation: 81
Am reading a file which contains list of sentences , I need to read each word and try to figure out this word in which line number .. the file contains :
I am for truth
no matter who tells it,
I am for justice,
no matter who it is for or against
Malcom X
and I want the output to be in this form :
against 4
matter 4
am 1, 3
no 2, 4
for 1, 3, 4
or 4
I 1, 3
tells 2
is 4
truth 1
it 2, 4
who 2,4
justice 3
X 5
Malcolm 5
am using binary search trees and here is my code :
int main(int argc, char *argv[]) {
fstream infile ;
BSTFCI <string>* bst = new BSTFCI<string>();
string word;
string line;
infile.open("test.txt" , ios::in);
if(infile.fail())
{
cout<<"Error Opening file"<<endl;
return 0;
}
while(!infile.eof())
{
infile>>word;
for(int i=0 ; i<word.size();i++)
{
if(ispunct(word[i]))
word.erase(i,1);
}
cout<<count<<endl;
if(!bst->search(word))
{
cout<<word<<endl;
bst->insert(word);
cout<<"add"<<endl;
}
else
{
cout<<word<<endl;
cout<<"exist"<<endl;
}
}
infile.close();
return 0;
}
Upvotes: 1
Views: 1517
Reputation: 87957
This might get you started,
#include <string>
#include <fstream>
#include <sstream>
// read the file line by line
int line_number = 0;
string line;
while (getline(infile, line))
{
++line_number;
// put the line in an istringstream
istringstream buffer(line);
// read the words from the line
string word;
while (buffer >> word)
{
// do something with word and line_number
// save them in some data structure
}
}
Upvotes: 3