摘要: 1.直接定义 priority_queue<int>h//按照默认优先级(大根堆)定义队列 2.定义结构体->运算符重载 (1)结构体里面不定义变量类型 struct cmp{ bool operator ()(int &a,int &b){ return a>b;//最小值优先 } }; prio 阅读全文
posted @ 2024-07-09 11:29 x_yin 阅读(103) 评论(0) 推荐(0) 编辑