北邮OJ 141 虚数

北邮OJ 虚数

在这里插入图片描述在这里插入图片描述

#include <bits/stdc++.h>
using namespace std;
typedef struct fushu{
	int x;		//实部 
	int y;		//虚部 
	int c;		//模 
}Fushu;
Fushu a[101];
int main(){
	int T;
	scanf("%d",&T);
	while(T--){
		int count=0;
		for(int j=0;j<101;j++){
			a[j].x=0;
			a[j].y=0;
			a[j].c=0;
		}			//初始化
		int n;
		int i=0;
		scanf("%d",&n);
		while(n--){
			char s[20];
			cin>>s;
			if(!strcmp(s,"Insert")){
				scanf("%d+i%d",&a[i].x,&a[i].y);
				count++;
				a[i].c=a[i].x*a[i].x+a[i].y*a[i].y; 
				i++;
				printf("Size: %d\n",count);
			}
			if(!strcmp(s,"Pop")){
				if(count==0)
					printf("Empty!\n");
				else{
					int max=0;
					for(int j=1;j<101;j++){
						if(a[max].c<a[j].c)
							max=j;
					}
						printf("%d+i%d\n",a[max].x,a[max].y);
						a[max].x=a[max].y=a[max].c=0;
						count--;
					if(count>0) 
						printf("Size: %d\n",count);
					else
						printf("Empty!\n"); 
				}
			}
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值