Programming 版 (精华区)
发信人: domino (爱咋咋地), 信区: Programming
标 题: 大家给看看
发信站: 哈工大紫丁香 (2002年05月28日15:39:38 星期二), 站内信件
我首先建立一个hash_map<const char * ,int, hash< const char *> >
m_Hash_Word;
然后写文件:
fstream fout( "tt.txt", ios::out );
hash_map< const char *,int, hash< cost char *> >::iterator H_Iter;
H_Iter = m_Hash_Word.begin();
while( H_Iter!= m_Hash_Word.end() )
{
fout << (*H_Iter).first
<< " "
<< (*H_Iter).second
<< endl;
H_Iter ++ ;
}
然后就死循环了!,不停的写!
--
※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: ir.hit.edu.cn]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:3.769毫秒