因此,这与其他答案略有不同。我不能说C ++编译器完全是“ Linux CLI工具”,但是运行g++ -O3 -march=native -o set_diff main.cpp
(使用下面的代码main.cpp
可以解决问题):
#include<algorithm>
#include<iostream>
#include<iterator>
#include<fstream>
#include<string>
#include<unordered_set>
using namespace std;
int main(int argc, char** argv) {
ifstream keep_file(argv[1]), del_file(argv[2]);
unordered_multiset<string> init_lines{istream_iterator<string>(keep_file), istream_iterator<string>()};
string line;
while (getline(del_file, line)) {
init_lines.erase(line);
}
copy(init_lines.begin(),init_lines.end(), ostream_iterator<string>(cout, "\n"));
}
要使用,只需运行set_diff B A
(不是 A B
,因为B
是nodes_to_keep
),结果差异将被打印到stdout。
请注意,为了让代码更简单,我放弃了一些C ++最佳实践。
可以进行许多其他速度优化(以增加内存为代价)。mmap
对于大型数据集也将特别有用,但这会使代码更加复杂。
既然您提到数据集很大,所以我认为一次读取nodes_to_delete
一行可能是减少内存消耗的好主意。如果您的代码中有很多重复项,则上面代码中采用的方法并不是特别有效nodes_to_delete
。此外,不保留订单。
易于复制和粘贴的内容bash
(即,跳过的创建main.cpp
):
g++ -O3 -march=native -xc++ -o set_diff - <<EOF
#include<algorithm>
#include<iostream>
#include<iterator>
#include<fstream>
#include<string>
#include<unordered_set>
using namespace std;
int main(int argc, char** argv) {
ifstream keep_file(argv[1]), del_file(argv[2]);
unordered_multiset<string> init_lines{istream_iterator<string>(keep_file), istream_iterator<string>()};
string line;
while (getline(del_file, line)) {
init_lines.erase(line);
}
copy(init_lines.begin(),init_lines.end(), ostream_iterator<string>(cout, "\n"));
}
EOF