如何在C ++中比较两个向量

时间:2010-05-25 09:25:49

标签: c++

这是我的代码:

#include <algorithm>
void f() {
    int[] a = {1, 2, 3, 4};
    int[] b = {1, 2, 100, 101};
    // I want to do something like this:
    // int* found = compare(a[0], a[3], b[0]);
    // in order to get a pointer to a[2]
}

也许我在手册中错过了这个算法......请帮忙:)。

2 个答案:

答案 0 :(得分:6)

答案 1 :(得分:5)

Sort您的数组并使用mismatch