复旦大学上机2015-3:模拟优先队列

本文详细介绍了如何使用C++实现一个优先队列,包括ADDNP任务插入、NEXT获取最高优先级任务、REMOVEN移除任务和COUNT计数功能。通过结构体task和自定义比较运算符,实现在任务优先级相同时按id排序。
摘要由CSDN通过智能技术生成

3.给出优先队列的实现,实现4个操作

• ADD N P:往队列里加入id为N的优先级为P的任务
• NEXT:输出下一个最高优先级的任务的id,如果优先级相同输出id小的任务,若队列中没有任务输出-1
• REMOVE N:移除id为N的任务
• COUNT:输出队列中的任务数量

#include <stdio.h>
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#pragma warning(disable:4996);
using namespace std;

struct task {
	int id;
	int prior;
	friend bool operator<(task& t1,task& t2)
	{
		if (t1.prior != t2.prior)
		{
			return t1.prior > t2.prior;
		}
		else {
			return t1.id < t2.id;
		}
	}
}t;

vector<task> T;

int main()
{
	int n;
	scanf("%d", &n);
	for (int i = 0; i < n; i++)
	{
		string str;
		cin >> str;
		if (str == "ADD") {
			scanf("%d %d", &t.id, &t.prior);
			T.push_back(t);
			sort(T.begin(), T.end());
		}
		else if (str == "NEXT") {
			if (T.size() == 0)
			{
				printf("-1\n");
			}
			else {
				task temp = T[0];
				printf("%d\n", temp.id);
				T.erase(T.begin());
			}
		}
		else if (str == "REMOVE") {
			int tempID;
			scanf("%d", &tempID);
			vector<task>::iterator it = T.begin();
			while (it != T.end())
			{
				if (it->id == tempID)
				{
					it = T.erase(it);
				}
				else {
					it++;
				}
			}
		}
		else if (str == "COUNT") {
			printf("%d\n", T.size());
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值