如果问题被改写:获取排序向量中点之间的所有曼哈顿距离:
#include <algorithm>
#include <vector>
#include <iostream>
struct Point { int x; int y; };
struct ManhattanDistance {
std::size_t a;
std::size_t b;
int value;
ManhattanDistance(std::size_t index_a, const Point& a, std::size_t index_b, const Point& b)
: a(index_a), b(index_b), value(abs(b.x - a.x) + abs(b.y - a.y))
{}
operator int () const { return value; }
};
inline std::ostream& operator << (std::ostream& stream, const ManhattanDistance& x) {
return stream << x.a << " - " << x.b << ": " << x.value;
}
int main()
{
typedef std::pair<std::size_t, std::size_t> Pair;
std::vector<Point> points = { {0,0}, {2,2}, {3,3}, {4,4}, {5,5} };
std::vector<ManhattanDistance> distances;
distances.reserve(points.size() * (points.size() - 1) / 2);
for(std::size_t a = 0; a < points.size() - 1; ++a) {
for(std::size_t b = a + 1; b < points.size(); ++b) {
distances.push_back(ManhattanDistance(a, points[a], b, points[b]));
std::cout << "Add: " << distances.back() << std::endl;
}
}
std::sort(distances.begin(), distances.end(), std::greater<ManhattanDistance>());
for(const auto& d: distances) std::cout << "Sorted: " << d << '\n';
std::cout << std::endl;
return 0;
}