我尝试创建一个集来存储文本文件的某些单词。然后我想从地图中删除这些单词,我已经编写了。我已成功设置了一个存储这些单词的集合,但我无法将其从地图中删除。此外,我不能使用循环语句(如for循环或while循环)。
#include <iostream>
#include <iomanip>
#include <fstream>
#include <iterator>
#include <algorithm>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <utility>
#include <sstream>
#include <list>
ifstream stop_file( "remove_words.txt" );
ofstream out( "output.txt" );
set <string> S;
copy(istream_iterator<string>(stop_file),
istream_iterator<string>(),
inserter(S, begin(S)));
//copy: copy from text file into a set
remove_if(M.begin(), M.end(), S);
//remove: function I try to remove words among words stored in a map
//map I made up is all set, no need to worry
答案 0 :(得分:0)
您能提供地图声明吗?
例如,如果地图为map<string, int>
,您可以执行以下操作:
for (string & s : set)
{
map.erase(s);
}
使用for_each将如下所示:
std::for_each(set.begin(), set.end(),
[&map](const std::string & s) { map.erase(s); });
此外,使用递归可以在没有循环的情况下进行删除
template <typename Iter>
void remove_map_elements(
std::map<std::string, int> & map,
Iter first,
Iter last)
{
if (first == last || map.empty())
return;
map.erase(*first);
remove_map_elements(map, ++first, last);
}
你称之为
remove_map_elements(map, set.begin(), set.end());
答案 1 :(得分:0)
如果我理解正确,你需要这样的东西:
std::map< std::string, int > m = {
{ "word1", 1 },
{ "word2", 2 },
{ "word3", 3 },
{ "word4", 4 }
};
std::set< std::string > wordsToRemove = { "word2" };
std::for_each(
wordsToRemove.begin(),
wordsToRemove.end(),
[&m] ( const std::string& word )
{
m.erase( word );
}
);