复数集合,堆

题目描述:

 一个复数(x+iy)集合,两种操作作用在该集合上:     
 1、Pop 表示读出集合中复数模值最大的那个复数,如集合为空 输出  empty  ,不为空就输出最大的那个复数并且从集合中
 删除那个复数,再输出集合的大小SIZE;     
 2 Insert a+ib  指令(a,b表示实部和虚部),将a+ib加入到集合中 ,输出集合的大小SIZE;  
   最开始要读入一个int n,表示接下来的n行每一行都是一条命令。

输入:

输入有多组数据。 每组输入一个n(1<=n<=1000),然后再输入n条指令。

输出:

根据指令输出结果。 模相等的输出b较小的复数。 a和b都是非负数。

代码实现:


#include <cstdio>
#include <queue>
#include <string>
using namespace std;
struct Complex{
    int re;
    int im;
};
bool operator < (Complex lhs,Complex rhs){
    //lhs的模小于rhs的模,得到大根堆 
    return lhs.re*lhs.re + lhs.im*lhs.im < rhs.re *rhs.re + rhs.im*rhs.im;
}
int main(){
    int n;
    scanf("%d",&n);
    priority_queue<Complex> pqueue;
    for (int i=0;i<n;++i){
        char action[30];
        scanf("%s",action);
        string actionstr = action;//c风格转换为c++风格
        if(actionstr == "Pop"){
            if(pqueue.empty()){
                printf("empty\n");
            }
            else{
                printf("%d+i%d\n",pqueue.top().re,pqueue.top().im);
                pqueue.pop();
                printf("SIZE = %d\n",pqueue.size());
            }
        }
        else if (actionstr == "Insert"){
            int re,im;
            scanf("%d+i%d",&re,&im);//格式化的读取
            Complex c;
            c.re = re;
            c.im = im;
            pqueue.push(c);
            printf("SIZE = %d\n",pqueue.size());
        }
    }
}

输入
3
Pop
Insert 1+i2
Pop
输出
empty
SIZE = 1
1+i2
SIZE = 0
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值