我打算建立链接以识别两个向量的关联。假设我们有两个向量:
vector1 <seg1, seg2, seg3>
vector2 <pic1, pic2, pic3,pic4>
假设关联如下:
seg1->(pic1, pic2) seg2->(pic1,pic2) seg3->pic3 //from vector1 side
pic1->(seg1, seg2) pic2->(seg1,seg2) pic3->seg3 pic4->nothing //from vector2 side
我想要的是知道哪个 seg 与哪个 indexNums 图片相关联,对于图片也是如此。我只关注两个向量中的位置编号,并不关心这两个向量的元素内容是什么。我所做的是设计一个结构,如:
Struct
{
int indexNum;
Bool type; //seg or pic
addlink(indexNum); //add a link to another Struct, and the type should be opposite.
removelink(indexNum); //remove a link from a given indexNum
getLinks(); //return all of links, the return should be vector<Struct*>?
}
我觉得不好,对协会也不清楚。有没有更好的方法来为这两个向量建立链接?