C++ min()算法解析

Min() 算法比较简单,它的作用是比较两个值大小然后返回最小值,可以先看下算法的定义:

	// TEMPLATE FUNCTION min
template<class _Ty> inline
	_Post_equal_to_(_Right < _Left ? _Right : _Left)
	_CONST_FUN const _Ty& (min)(const _Ty& _Left, const _Ty& _Right)
	{	// return smaller of _Left and _Right
	return (_DEBUG_LT(_Right, _Left) ? _Right : _Left);
	}

其中 _Debug_LT 的宏定义为


  #define _DEBUG_LT(x, y)	((x) < (y))

即判断右值是否小于左值然后返回小值,它也有仿函数重载:

	// TEMPLATE FUNCTION min WITH PRED
template<class _Ty,
	class _Pr> inline
	_CONST_FUN const _Ty& (min)(const _Ty& _Left, const _Ty& _Right,
		_Pr _Pred)
	{	// return smaller of _Left and _Right using _Pred
	return (_DEBUG_LT_PRED(_Pred, _Right, _Left) ? _Right : _Left);
	}

其中 _DEBUG_LT_PRED 的宏定义为

#define _DEBUG_LT_PRED(pred, x, y)	pred(x, y)

可自定义仿函数处理两值,返回值不变仍为传入的数据类型。

而 min() 函数还有个初始化队列作参数的重载:

template<class _Ty,
	class _Pr> inline
	/* _CONST_FUN */	// TRANSITION
	_Ty (min)(_XSTD initializer_list<_Ty> _Ilist, _Pr _Pred)
	{	// return leftmost/smallest
	const _Ty *_Res = _STD min_element(_Ilist.begin(), _Ilist.end(), _Pred);
	return (*_Res);
	}

即传入一个初始化队列,算法将其当作容器对待,调用 min_element 算法求出队列中的最小值所在的迭代器指针,并返回最小值。

下面做个演示:

vector<int> a{ 1,2,3 };
cout << "最小值对比:" << min(*(a.begin()),*(a.end()-1)) << endl;
cout << "队列最小值:" << min({ 1,2,3}) << endl;

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值