前端之家收集整理的这篇文章主要介绍了
【1509】【数据结构】Windows Message Queue,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
- #include<iostream>
- #include<queue>
- #include<algorithm>
- #include<cstring>
- usingnamespacestd;
- structnode
- {
- charname[1000];
- intparameter;
- intpriority;
- intnum;
- friendbooloperator<(nodea,nodeb)
- if(b.priority==a.priority)
- returnb.num<a.num;
-
- returnb.priority<a.priority;
- }
- };
- intmain()
- priority_queue<node>q;
- charstr[100];
- nodetemp;
- intnum=0;
- while(~scanf("%s",str))
- if(strcmp(str,"GET")==0)
- if(!q.empty())
- temp=q.top();
- printf("%s%d\n",temp.name,temp.parameter);
- q.pop();
- }
- else
- printf("EMPTYQUEUE!\n");
- else
- {
- scanf("%s%d%d",&temp.parameter,&temp.priority);
- temp.num=num++;
- q.push(temp);
-
- }
原文链接:https://www.f2er.com/datastructure/382458.html