make_heap,pop_heap,push_heap

本文介绍如何使用C++标准库中的make_heap、push_heap和pop_heap函数来操作动态数组实现的堆,并通过示例展示了这些函数的基本用法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

呃呃呃 天梯前几个小时哈哈哈

学一下

代码

#include<bits/stdc++.h>
using namespace std;
struct node
{
	int num;
	int id;
	node(){}
	node(int a, int b){num = a; id = b;}
};
int main()
{
	//make_heap 怎么用 
	vector<int>vec{6,4,7,1,5};
	make_heap(vec.begin(),vec.end()); //有less<int>()  greater<int>()
	for(int i = 0 ; i < 5; i ++)
		printf("%d ",vec[i]);
	printf("\n");	 
	//这个是按照堆的pushDown n / 2 建立一个堆 
	
	//push_heap 
	vec.push_back(99);
	push_heap(vec.begin(),vec.end());
	for(int i = 0 ; i < 6; i ++)
		printf("%d ",vec[i]);
	printf("\n");	 
	
	//pop_heap  
	pop_heap(vec.begin(),vec.end());
	for(int i = 0 ; i < 6; i ++)
		printf("%d ",vec[i]);
	printf("\n");	 	 
	return 0;
}

 

 

结果 

7 5 6 1 4
99 5 7 1 4 6
7 5 6 1 4 99

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值