gpt4 book ai didi

c++ - 如何在 C++ 中实现两个 vector 的编译时间乘积

转载 作者:行者123 更新时间:2023-12-01 15:13:23 25 4
gpt4 key购买 nike

大小为“N”的两个 vector 的标量积定义为 SP(a, b) = a_1 * b_1 + ... + a_N * b_N。

编译时整数 vector 定义为:

template<int... I>
struct Vector;

功能产品界面:
template<typename Vector1, typename Vector2>
constexpr int product

例如,以下代码可用于测试:
static_assert(product<Vector<1, 2, 5>, Vector<1, 3, 4>> == 27);

产品如何实现以匹配上面的断言和接口(interface)?

最佳答案

使用 C++17 折叠

template <int...>
struct Vector
{ };

template <typename, typename>
constexpr int product = -1;

template <int ... Is, int ... Js>
constexpr int product<Vector<Is...>, Vector<Js...>> = (... + (Is*Js));

int main ()
{
static_assert(product<Vector<1, 2, 5>, Vector<1, 3, 4>> == 27);
}

关于c++ - 如何在 C++ 中实现两个 vector 的编译时间乘积,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60639559/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com