用sort对vector排序

分为升序和降序两排序方式:

vectorv;

sort(v.begin(), v.end(),less());//升序

sort(v.begin(), v.end(),greater());//降序

 

你可能感兴趣的:(vector,sort,STL)