摘要: template struct Priority_queue{ T *a; void init(){ num = 0; } Priority_queue(int n=1100000){ a = new T[n]; num = 0; } int num; int size(){ ... 阅读全文
posted @ 2018-02-03 15:44 晓风微微 阅读(251) 评论(0) 推荐(0) 编辑