gpt4 book ai didi

c++ - 在模板元编程中使用列表类型

转载 作者:太空狗 更新时间:2023-10-29 20:34:02 24 4
gpt4 key购买 nike

我有一个编码方案,我使用以下规则转换数字 [0-9]:

0 - 3
1 - 7
2 - 2
3 - 4
4 - 1
5 - 8
6 - 9
7 - 0
8 - 5
9 - 6

因此我可以使用以下数组进行正向查找
int forward[] = { 3,7,2,4,1,8,9,0,5,6}
其中 forward[n] 是 n 的编码。类似下面的反向查找
int inverse{ 7,4,2,0,3,8,9,1,5,6};
其中 `inverse[n] 将解码 n

反向数组可以很容易地在运行时从正向数组创建,但理想情况下,我想在编译时创建它。鉴于模板元编程是一种函数式语言,我首先使用 Haskell 实现了所有内容:

pos :: [Int] -> Int -> Int
pos lst x =
let
pos'::[Int] -> Int -> Int -> Int
pos' (l:lst) x acc
| l == x = acc
| lst == [] = -1
| otherwise = pos' lst x (acc + 1)
in
pos' lst x 0

inverse ::[Int] -> [Int]
inverse lst =
let
inverse'::[Int] -> Int -> [Int]
inverse' l c
| c == 10 = []
| otherwise = pos l c : inverse' l (c + 1)
in
inverse' lst 0

我设法在 C++ 模板元编程中实现 pos,使用:

#include <iostream>

static int nums[] = {3,7,2,4,1,8,9,0,5,6};

template <int...>
struct pos_;

template <int Find, int N, int Arr0, int... Arr>
struct pos_<Find,N, Arr0, Arr...> {
static constexpr int value = pos_<Find, N+1, Arr...>::value;
};

template <int Find, int N, int... Arr>
struct pos_<Find ,N, Find, Arr...> {
static constexpr int value = N;
};

template <int Find,int N>
struct pos_<Find ,N> {
static constexpr int value = -1;
};

template <int Find, int... Arr>
struct pos {
static constexpr int value = pos_<Find,0, Arr...>::value;
};

int main()
{
std::cout << "the positions are ";

std::cout << pos<3, 3,7,2,4,1,8,9,0,5,6>::value << std::endl;
}

但是,我在将数组转换为参数包时遇到了问题,并且在实现逆向时,我无法将 value 分配给参数包。

在模板元编程中使用列表的最佳方法是什么?

对于上下文,在查看 Base64 编码时想到了这个问题,我想知道是否有一种方法可以在编译时生成反向编码。

最佳答案

在编译时生成逆数组的最简单/最干净的方法是编写constexpr 逆函数。沿着:

template<size_t N>
constexpr std::array<int, N> inverse(const std::array<int, N> &a) {
std::array<int, N> inv{};
for (int i = 0; i < N; ++i) {
inv[a[i]] = i;
}
return inv;
}

你可以在这里看到它的实际效果:https://godbolt.org/g/uECeie

如果您想要更接近您的初始方法/Haskell,您可以查看如何使用 TMP 实现编译时列表以及如何为它们编写熟悉的函数(如 append 和 concat)。在那之后实现逆将变得微不足道。顺便说一句,忽略一般的 C++ 语法笨拙,这些定义在精神上与您在函数式语言中找到的非常相似。

关于c++ - 在模板元编程中使用列表类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51612153/

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