Sorting
Sorting in arrays, vectors, and other STL, as well as how to use auto comparators
Sorting
Custom Comparator
bool cmp(const Edge &x, const Edge &y) { return x.w < y.w; }
sort(begin(v), end(v), cmp);sort(begin(v), end(v), [](const Edge &x, const Edge &y) { return x.w < y.w; });Typical Data Structures
Last updated