F. 逆散列问题

//我们先将输入序列进行升序排序,然后挨个检查是否满足插入条件,满足则输出,
//不满足则放进一个待插入的数组;每成功输出一个,就要回过头来检查待插入数组中的元素是否可以插入;
//挨个检查完后,若待插入数组中还有剩余元素,则需要继续将它们插入;
#include <iostream>
#include <algorithm>
using namespace std;
int index(int* a, int obj){//返回对应下标
	for (int i = 0; ; i++){
		if (a[i] == obj)
			return i;
	}
}
int judge(int* a, int n){//判断other数组中是否还有元素
	for (int i = 0; i < n; i++){
		if (a[i] != -1)
			return 1;
	}
	return 0;
}
int main(){
	int n;
	cin >> n;
	//输入
	int* in = new int[n];
	for (int i = 0; i < n; i++)
		cin >> in[i];
	//输入的升序排序,因为要求当前的插入有多种选择时,必须选择最小的数字,所以要优先判断小的数
	int* up = new int[n];
	for (int i = 0; i < n; i++)
		up[i] = in[i];
	sort(up, up + n);
	//不满足插入条件的元素
	int* other = new int[n];
	for(int i=0;i<n;i++)
	other[i]=0;
	int count = 0;
	//是否已插入的标志
	int* flag = new int[n];
	for (int i = 0; i < n; i++)
		flag[i] = 0;
	for (int i = 0; i < n; i++){
		if (up[i] >= 0){//元素为负数说明没有元素
			if (count > 0){//每次都要回头检查other中元素是否可以插入
				for (int j = 0; j < count; j++){
					if (other[j] != -1){
						int tag = 0;
						for (int k = other[j] % n; k != index(in, other[j]); k = (k + 1) % 11){
						//other中插入条件:从下标为该数取余得数开始,到该数在输入序列中的位置之前,
						//都已经有元素插入。
							if (flag[k] == 0){
								tag = 1;
								break;
							}
						}
						if (tag == 0){
							cout << other[j] << " ";
							flag[index(in, other[j])] = 1;
							other[j] = -1;//插入后ohter[j]改为-1;
						}
					}

				}
			}
			//判断是否满足插入条件
			if (up[i] % n == index(in, up[i])){//该数取余得数正好对应其在输入序列中的顺序
				cout << up[i] << " ";
				flag[index(in, up[i])] = 1;
			}
			else
				other[count++] = up[i];
		}
	}
	while (judge(other, count)){//插入other中剩余元素
		for (int i = 0; i < count; i++){
			if (other[i] != -1){
				int tag = 0;
				for (int k = other[i] % n; k < index(in, other[i]); k++){
					if (flag[k] == 0){
						tag = 1;
						break;
					}
				}
				if (tag == 0){
					cout << other[i] << " ";
					flag[index(in, other[i])] = 1;
					other[i] = -1;
					break;
				}
			}
		}
	}
	return 0;
}

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

草海桐

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值