求问这段代码什么意思
查看原帖
求问这段代码什么意思
348197
绊城烟雨“grz楼主2020/9/20 11:50
const int N=2e5+100; // 2e5:科学计数法 2*10的5次方
struct point{
        double x,y;//成员变量
        bool operator<(const point& t)const{ //const 不允许修改t 第二个const不允许修改x(主)
	       return x<t.x;
	}
};
double dis(point& a,point& b){ //引用

}
point a[N];
int main(){
       if(a[i]    a[j])
}
2020/9/20 11:50
加载中...