次の問題を解決するには、迅速なアルゴリズムが必要です。Group1 と Group2 の 2 つのデータ グループがあり、どちらもデカルト座標の点で構成されているとします。どちらのデータ グループのポイント数も等しく、データ グループ内のポイントの順序も固定されています。これで、Group1 と Group2 の各ポイントが 1 つずつ異なるクラスに分類されます。たとえば、Group1 の最初のデータは としてGroup1Class1
分類され、Group2 の最初のデータは として分類されGroup2Class1
、Group1 の 2 番目のデータは として分類されGroup1Class2
、Group2 の 2 番目のデータは として分類されGroup2Class2
ます。両方のデータ グループの同じデータ シーケンスが異なるクラスに属する場合があります。たとえば、Group1 の 10 番目のデータは次のように分類できます。Group1Class2
Group2 の 10 番目のデータは として分類される場合がありますGroup2Class10
。最後に、これらのデータ グループに次のクラスとデータ インデックスを含めることができます。
Class Data index
Group1Class1 {1 2 3}
Group1Class2 {4 5 6 7}
Group1Class3 {8}
Group1Class4 {9}
Group1Class5 {10 11}
Group1Class6 {12}
Class Data index
Group2Class1 {1 2}
Group2Class2 {3}
Group2Class3 {4 5 6 7 8 9}
Group2Class4 {10 11 12}
私がやろうとしているのは、同じデータ シーケンスが表示された場合に対応するクラス ペアを見つけることです。たとえば、上記の例では、対応するクラスのペアは次のとおりです。
Group1Class1 Group2Class1
Group1Class1 Group2Class2
Group1Class2 Group2Class3
Group1Class3 Group2Class3
Group1Class4 Group2Class3
Group1Class5 Group2Class4
Group1Class6 Group2Class4
タスクを実行するために次のコードを作成しました。
int main()
{
std::vector<std::vector<int> > map_array_left;
std::vector<int> temp;
temp.push_back(1);
temp.push_back(2);
temp.push_back(3);
map_array_left.push_back( temp);
temp.clear();
temp.push_back(4);
temp.push_back(5);
temp.push_back(6);
temp.push_back(7);
map_array_left.push_back(temp);
temp.clear();
temp.push_back(8);
map_array_left.push_back(temp);
temp.clear();
temp.push_back(9);
map_array_left.push_back(temp);
temp.clear();
temp.push_back(10);
temp.push_back(11);
map_array_left.push_back(temp);
temp.clear();
temp.push_back(12);
map_array_left.push_back(temp);
std::vector<std::vector<int> > map_array_right;
temp.clear();
temp.push_back(1);
temp.push_back(2);
map_array_right.push_back(temp);
temp.clear();
temp.push_back(3);
map_array_right.push_back(temp);;
temp.clear();
temp.push_back(4);
temp.push_back(5);
temp.push_back(6);
temp.push_back(7);
temp.push_back(8);
temp.push_back(9);
map_array_right.push_back(temp);;
temp.clear();
temp.push_back(10);
temp.push_back(11);
temp.push_back(12);
map_array_right.push_back(temp);;
std::vector<int> temp_right;
std::vector<int> temp_left;
std::vector<std::vector<int> > corresponding;
for(int i=0; i<map_array_left.size(); i++)
{
temp_left = map_array_left[i];
for (int j=0; j<map_array_right.size(); j++)
{
std::vector<int> cor_single;
cor_single.push_back(i+1);
temp_right = map_array_right[j];
bool b_find = false;
for(int k=0; k<temp_right.size();k++)
{
std::vector<int>::iterator it;
it = find(temp_left.begin(),temp_left.end(),temp_right[k]);
if(it == temp_left.end())
{
}
else
{
b_find = true;
break;
}
}
if(b_find)
{
cor_single.push_back(j+1);
corresponding.push_back(cor_single);
cor_single.clear();
cor_single.push_back(i+1);
}
}
}
return 0;
}
関数は機能するようですが、これが賢明な方法であるかどうかはわかりません。どんなアイデアでも大歓迎です。
提案に基づいて、ジョブを実行する2番目の方法は次のとおりです。
void build_map(const std::vector<std::vector<int> > &map_array_left,map<int,int> &left_map)
{
int class_index,data_index;
for(int i=0; i<map_array_left.size(); i++)
{
class_index = i+1;
for(int j=0; j<map_array_left[i].size(); j++)
{
data_index = map_array_left[i][j];
left_map.insert(std::pair<int,int>(data_index,class_index));
}
}
}
void find_correponding(const std::vector<std::vector<int> > &map_array_right, std::map<int,int> &left_map,set<vector<int> > &correponding_classes)
{
int class_index_left;
int class_index_right;
int data_index;
for(int i=0; i<map_array_right.size(); i++)
{
class_index_right = i+1;
for(int j=0; j<map_array_right[i].size(); j++)
{
vector<int> corresponding_single;
data_index = map_array_right[i][j];
class_index_left = left_map[data_index];
corresponding_single.push_back(class_index_left);
corresponding_single.push_back(class_index_right);
correponding_classes.insert(corresponding_single);
}
}
}
int main()
{
std::vector<std::vector<int> > map_array_left;
std::vector<int> temp;
temp.push_back(1);
temp.push_back(2);
temp.push_back(3);
map_array_left.push_back( temp);
temp.clear();
temp.push_back(4);
temp.push_back(5);
temp.push_back(6);
temp.push_back(7);
map_array_left.push_back(temp);
temp.clear();
temp.push_back(8);
map_array_left.push_back(temp);
temp.clear();
temp.push_back(9);
map_array_left.push_back(temp);
temp.clear();
temp.push_back(10);
temp.push_back(11);
map_array_left.push_back(temp);
temp.clear();
temp.push_back(12);
map_array_left.push_back(temp);
std::vector<std::vector<int> > map_array_right;
temp.clear();
temp.push_back(1);
temp.push_back(2);
map_array_right.push_back(temp);
temp.clear();
temp.push_back(3);
map_array_right.push_back(temp);;
temp.clear();
temp.push_back(4);
temp.push_back(5);
temp.push_back(6);
temp.push_back(7);
temp.push_back(8);
temp.push_back(9);
map_array_right.push_back(temp);;
temp.clear();
temp.push_back(10);
temp.push_back(11);
temp.push_back(12);
map_array_right.push_back(temp);;
map<int,int> left_map;
build_map( map_array_left, left_map);
std::set<vector<int> > correponding_classes;
find_correponding(map_array_right,left_map,correponding_classes);
return 0;
}