Using “unique()” on a vector of vectors in C++

前端 未结 2 1568
情深已故
情深已故 2021-01-21 02:27

I hope this is not a duplicate question, but if it is, feel free to point me in the right direction.

I have a vector >.

Is i

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-21 03:14

    Looks like it should work -- it would call the == operator on two vector objects so that should work.

    Note that the operator works on groups of duplicates so you may have to sort your outer vector if your duplicates are not grouped already.

    Ref: http://www.sgi.com/tech/stl/unique.html

提交回复
热议问题