假设用户在向量中搜索某个数字(向量数字();),如何在其他向量中用相应的[i]显示该向量[i]的结果?
答案 0 :(得分:0)
请考虑使用iterators。
for(yourVector<YOUR_OBJECT_TYPE>::iterator it = yourVector.begin(); it != yourVector.end(); it++)
if(it == indexOfDesiredElement) {
YOUR_OBJECT_TYPE theValue = *it;
// pass theValue to a helper method and proceed from there.
}
}