C++利用set排除字眼,Iterator Inserter,Iostream Iterator的使用
利用set将输入到map中的字眼进行排除setexlusion={"a","an","or","the","and","but"};//排除的字眼mapwords;//被筛选的文本vectorout;//将筛选后的文本存入vector中stringtext;while(in_file>>text){if(exlusion.count(text))//检测文本中的字眼在不在set中{continue