时隔一个月我也震惊当初自己怎么写出这玩意 #include<iostream> #include<vector> using namespace std; //结点创建类 typedef struct node { int x, y, len; node* father, *left, *right, *up, *down; &nb...