我从字符串的 const 列表中编写了一个文本文件,我需要避免重复(列表包含重复)。这些数据结构中的哪一个更好(在性能方面)用于跟踪已写入的字符串,
map<string,bool>
set<string>
现在我将如何做到这一点,
foreach(string in list)
if(not found in map/set)
write to file
insert to map/set
endif
end
或者有没有其他方法可以做到这一点?