标签:str bsp priority 默认 amp vector struct nod gre
priority_queue<int>que//默认最大的先出来 priority_queue<int,vector<int>,greater<int> >que;///最小的先出来
struct node{ int x,y; bool operator < (const node &b)const{ return x<b.x;///大的先出来 } }x1,x2,x3;
标签:str bsp priority 默认 amp vector struct nod gre
原文地址:https://www.cnblogs.com/starve/p/11450456.html