This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我从文件中读取了一些字符串,我需要忽略我已经处理过的字符串。首先,我的想法是创建vector<std::string>我将存储字符串的位置,并在收到新的字符串后检查它是否已经在向量中。但是后来我虽然可以使用 just 来做同样的事情std::string,但我认为它更快并且使用更少的内存,但是这种方式在使用 vector 时并不那么明显。哪种方法更好?