私vector<vector<int>>
は次のエントリを持っています:
2 3
3 4
2 3
4 5
5 6
一度だけ表示されるエントリで別のエントリを作成する必要がありvector<vector<int>>
ます。そう:
3 4
4 5
5 6
これにより、探している結果が得られます。std::map
との使用std::pair
#include <iostream>
#include <vector>
#include <map>
int main() {
std::map<std::pair<int, int>, int> count_map;
std::vector<std::pair<int, int> > v;
std::vector<std::pair<int, int> > v2;
int a[10] = {2,3,3,4,2,3,4,5,5,6};
for(int i = 0; i < 10; i++) {
int first = a[i];
int second = a[++i];
std::pair<int, int> p = std::make_pair(first, second);
v.push_back(p);
count_map[p]++;
}
for(auto it = count_map.begin(); it != count_map.end(); ++it) {
if(it->second != 1) continue;
v2.push_back(it->first);
std::cout << it->first.first << ", " << it->first.second << std::endl;
}
}
でデータを割り当てる場合、とstd::pair
を使用できます。std::sort
std::unique
std::vector<std::pair<int,int>> vPairs;
std::sort(vPairs.begin(), vPairs.end());
std::vector<std::pair<int,int>>::iterator it;
it = std::unique(vPairs.begin(), vPairs.end()); // iterator keeps the last unique element position
vPairs.resize( std::distance(vPairs.begin(),it) ); // resize according to unique pair number