C++基於sort排序對象

有時咱們須要對某個數據進行排序,例如基於id升序或降序排列座標點。使用sort排序vector中的對象。 結構體定義以下:web struct Point2f { double x; double y; int id; } static bool cmp(const Point2f &A, const Point2f &B){ return A.id > B.id;
相關文章
相關標籤/搜索