关于堆的判断——小顶堆的性质

在这里插入图片描述小顶堆性质:根节点小于等于子树的完全二叉树。

c++代码:

int a[MAX],cnt;
map<int,int>p;
void creat(int x){  //小顶堆建树
	a[++cnt]=x;
	int t=cnt;
	while(t>1&&(a[t/2]>a[t])){
		swap(a[t/2],a[t]);
		t/=2;
	}
	a[t]=x;
}
void solve()
{
	int n,m;
	cin >>n>>m;
	for(int i=1;i<=n;i++){
		int x;
		cin >>x;
		creat(x);
	}
	for(int i=1;i<=n;i++){ //map颠倒
		p[a[i]]=i;
	}
	int x,y;
	string s;
	for(int i=1;i<=m;i++){
		cin >>x>>s;
		if(s[0]=='a'){
			cin >>y>>s>>s;
			if(p[x]/2==p[y]/2) cout <<"T"<<endl;
			else cout <<"F"<<endl;
		}
		else{
			cin >>s>>s;
			if(s[0]=='r'){
				if(p[x]==1) cout <<"T"<<endl;
				else cout <<"F"<<endl;
			}
			else if(s[0]=='p'){
				cin >>s>>y;
				if(p[y]/2==p[x]) cout <<"T"<<endl;
				else cout <<"F"<<endl;
			}
			else{
				cin >>s>>y;
				if(p[x]/2==p[y]) cout <<"T"<<endl;
				else cout <<"F"<<endl;
			}
		}
	}
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要将大顶转换为小顶堆,可以按照以下步骤进行操作: 1. 首先,将大顶的根节点(最大值)与最后一个叶子节点进行交换。 2. 然后,将交换后的最后一个叶子节点移出。 3. 接下来,对根节点进行下沉操作(与其子节点中较小的那个进行交换),以维持小顶堆性质。 4. 重复步骤2和3,直到所有节点都被移出。 具体的实现过程如下: 1. 假设要将大顶存储在数组中,根节点的索引为0。 2. 交换根节点与最后一个叶子节点,即将根节点的值与数组末尾元素交换。 3. 对根节点进行下沉操作,找到它与子节点中较小值的索引,然后将其交换。 4. 重复步骤2和3,直到所有节点都被移出。 以下是一个示例实现的伪代码: ``` # 将大顶转换为小顶堆 def convert_to_min_heap(heap): n = len(heap) # 从最后一个非叶子节点开始,依次向前处理 for i in range(n // 2 - 1, -1, -1): # 将当前节点下沉到合适位置 heapify(heap, n, i) return heap # 下沉操作 def heapify(heap, n, i): smallest = i left = 2 * i + 1 right = 2 * i + 2 # 找到左子节点和右子节点中的最小值 if left < n and heap[left] < heap[smallest]: smallest = left if right < n and heap[right] < heap[smallest]: smallest = right # 如果最小值不是当前节点,则将其与当前节点交换,并继续下沉 if smallest != i: heap[i], heap[smallest] = heap[smallest], heap[i] heapify(heap, n, smallest) ``` 此伪代码通过调用 `convert_to_min_heap` 函数,将输入的大顶转换为小顶堆。注意,此实现假设中已经存在数据,并且的大小为 n。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值