#include #include using namespace std; const int MAXVERT = 20; struct point { double x, y; } locations[MAXVERT]; int curMin; bool adj[MAXVERT][MAXVERT]; int freq[MAXVERT]; int numV; bool ok(int v, int f) { for(int i=0; i> numV; while (numV != 0) { for(int i=0; i> locations[i].x >> locations[i].y; for(int j=0; j> numV; } return 0; }