标签:
stl的操作不是很熟练, 记录一下
1.vector:
排序:
sort(vc.begin(),vc.end());
去重:
num.erase(unique(vc.begin(),vc.end()),vc.end());
STL 常见操作
原文地址:http://www.cnblogs.com/cnblogs321114287/p/4680023.html