剪辑数字的最有效/优雅的方法?

Most efficient/elegant way to clip a number?(剪辑数字的最有效/优雅的方法?)
本文介绍了剪辑数字的最有效/优雅的方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

给定一个实数 (n),这个实数可以是的最大值(上),以及这个实数可以是的最小值(下),我们如何最有效地裁剪 n,使其保持在下限和上限之间?

Given a real (n), a maximum value this real can be (upper), and a minimum value this real can be (lower), how can we most efficiently clip n, such that it remains between lower and upper?

当然,使用一堆 if 语句可以做到这一点,但这很无聊!更紧凑、优雅/有趣的解决方案怎么样?

Of course, using a bunch of if statements can do this, but that's boring! What about more compact and elegant/fun solutions?

我自己的快速尝试(C/C++):

My own quick attempt (C/C++):

float clip( float n, float lower, float upper )
{
    n = ( n > lower ) * n + !( n > lower ) * lower;
    return ( n < upper ) * n + !( n < upper ) * upper;
}

我确信还有其他更好的方法可以做到这一点,这就是我将它放在那里的原因..!

I'm sure there are other, better ways to do this, that's why I'm putting this out there..!

推荐答案

乏味、陈旧、可读和最短的又如何:

What about boring, old, readable, and shortest yet:

float clip(float n, float lower, float upper) {
  return std::max(lower, std::min(n, upper));
}

?

这个表达式也可以像这样泛化":

This expression could also be 'genericized' like so:

template <typename T>
T clip(const T& n, const T& lower, const T& upper) {
  return std::max(lower, std::min(n, upper));
}

更新

比利·奥尼尔补充说:

请注意,在 Windows 上,您可能必须定义 NOMINMAX,因为它们定义了冲突的最小和最大宏

Note that on windows you might have to define NOMINMAX because they define min and max macros which conflict

这篇关于剪辑数字的最有效/优雅的方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do compilers treat variable length arrays(编译器如何处理变长数组)
Deduce template argument from std::function call signature(从 std::function 调用签名推导出模板参数)
check if member exists using enable_if(使用 enable_if 检查成员是否存在)
Standard Library Containers with additional optional template parameters?(具有附加可选模板参数的标准库容器?)
Uses of a C++ Arithmetic Promotion Header(C++ 算术提升标头的使用)
Parameter pack must be at the end of the parameter list... When and why?(参数包必须位于参数列表的末尾...何时以及为什么?)