文本文件包含格式如下的行:
lSdhmhlN 15479 6694.74 O
szUfGnoI 18760 5275.53 n
我逐行读取文件,将其数据放入缓冲区变量中,将这些变量存储在 TopicD 对象中,并将该对象插入二叉搜索树。问题是文件的最后一行被读取了两次,因此创建了两个相同的 TopicD 对象并将其插入到树中。为什么?
这是我的代码:
template<class ItemType>
void read( BinarySearchTree<ItemType> & tree )
{
ifstream read( FILE_NAME.c_str() );
if ( read.fail() )
die( "Error opening the file." );
string strbuff;
double dubbuff;
int intbuff;
char chbuff;
while ( !read.eof() )
{
read >> strbuff;
read >> intbuff;
read >> dubbuff;
read >> chbuff;
TopicD buff( strbuff, dubbuff, intbuff, chbuff );
tree.add(buff);
}
read.close();
}