stl中的unique

其先调用adjacent_find,然后用unique_copy
 __first = adjacent_find(__first, __last);
  return unique_copy(__first, __last, __first);


你可能感兴趣的:(stl中的unique)