求c++向量用法
哪位大哥能讲下c++向量用法,先谢过了。
一个例子
// specialize for vector<T>template<class T>
class Compare<vector<T> >
{
public:
static
bool IsEqual(const vector<T>& lh, const vector<T>& rh)
{
if(lh.size() != rh.size()) return false;
else
{
for(int i = 0; i < lh.size(); ++i)
{
if(lh != rh) return false;
}
}
return true;
}
};
bool r5 = Compare<vector<int>