C++引用、STL改写
现有一段代码bool Contains(MatchIndex idx) const
{
AdjListElem e;
e.m_index = idx.second;
const MatchAdjList &l = m_match_lists[idx.first];
std::pair<MatchAdjList::const_iterator,MatchAdjList::const_iterator> p;
p=equal_range(l.begin(), l.end(), e);
return (p.first != p.second);
}
请问各位大侠,这段代码如何改写成非引用的语句?其中AdjListElem、MatchAdjList 、m_match_lists均是定义的容器。
另外,当跟踪到语句p=equal_range(l.begin(), l.end(), e);时直接跳到class vector : public _Vector_base<_Tp, _Alloc>中的语句const_iterator end() const { return this->_M_finish; }处,请问这是什么错误?
在线等待,多谢各位大侠帮助!