大顶堆实现一个优先队列。对于队列的操作应该至少支持下列几种指令: Void enqueue[int ObjectID, int Priority] Int dequeue[]

源代码在线查看: object.h

软件大小: 10 K
上传用户: leeixndong
关键词: int ObjectID Priority enqueue
下载地址: 免注册下载 普通下载 VIP

相关代码

				class Object {
				public :
					int ID;														//id of the Object 
					int priority;												//priority of the Object
					Object(){ID=0;priority=0;}
					Object(int i,int p) {ID=i;priority = p;}
				};			

相关资源