rt,如何将一个这样的结构体:
struct node{ int s; bool f[1005]; friend operator<(node q,node p){ return q.s<p.s; } };
插入一个优先队列
priority_queue<node>q;
之中?