- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想实现一个模板递归算法,我转发两个可变参数并递减变量 K
。我认为最简单的方法是堆叠两个 struct
的定义。但是,如果我尝试在 constexpr
上进行调试输出,则会出现链接器错误。如果我只是在非堆栈结构中执行类似的方法代码,它似乎会起作用。
: In function `void detail::L1<3ul, 4ul, 3ul, 2ul, 1ul>::L2<2ul, 3ul, 4ul, 5ul>::run<int, int, int, int>(int, int, int, int)':
: undefined reference to `detail::L1<3ul, 4ul, 3ul, 2ul, 1ul>::L2<2ul, 3ul, 4ul, 5ul>::dim_array'
: In function `void detail::L1<2ul, 4ul, 3ul, 2ul, 1ul>::L2<2ul, 3ul, 4ul, 5ul>::run<int, int, int, int>(int, int, int, int)':
: undefined reference to `detail::L1<2ul, 4ul, 3ul, 2ul, 1ul>::L2<2ul, 3ul, 4ul, 5ul>::dim_array'
: In function `void detail::L1<1ul, 4ul, 3ul, 2ul, 1ul>::L2<2ul, 3ul, 4ul, 5ul>::run<int, int, int, int>(int, int, int, int)':
: undefined reference to `detail::L1<1ul, 4ul, 3ul, 2ul, 1ul>::L2<2ul, 3ul, 4ul, 5ul>::dim_array'
代码
// Example program
#include <iostream>
#include <string>
#include <array>
template <size_t K, std::size_t... IDs>
struct L1 {
template <std::size_t... DIMS>
struct L2 {
static constexpr std::array<size_t, sizeof...(DIMS)> dim_array = {{DIMS...}};
static void run() {
constexpr size_t n = dim_array[K];
for(int i = 0; i < sizeof...(DIMS); i++) {
std::cout<<dim_array[i]<<" ";
}
std::cout << std::endl;
L1<K-1, IDs...>::template L2<DIMS...>::run();
}
};
};
template <std::size_t... IDs>
struct L1<0, IDs...> {
template <std::size_t... DIMS>
struct L2 {
static constexpr std::array<size_t, sizeof...(DIMS)> dim_array = {{DIMS...}};
static void run() {
}
};
};
int main() {
L1<3, 4,3,2,1>::template L2<2,3,4,5>::run();
}
作品:
// Example program
#include <iostream>
#include <string>
#include <array>
template <std::size_t... DIMS> // Define dimensions of the ctrl point grid. E.g. 4x4x4
struct works {
static void run() {
static constexpr std::array<size_t, sizeof...(DIMS)> dim_array = {{DIMS...}};
for(int i = 0; i < sizeof...(DIMS); i++) {
std::cout<<dim_array[i]<<" ";
}
std::cout << std::endl;
}
};
int main() {
works<1,2,3>::run();
}
最佳答案
在我看来,您忘记添加(在结构之外)以下几行
template <std::size_t K, std::size_t... IDs>
template <std::size_t ... DIMS>
constexpr std::array<std::size_t, sizeof...(DIMS)>
L1<K, IDs...>::L2<DIMS...>::dim_array;
template <std::size_t K, std::size_t... IDs>
template <std::size_t ... DIMS>
constexpr std::array<std::size_t, sizeof...(IDs)>
L1<K, IDs...>::L2<DIMS...>::id_array;
我的意思是...您已经声明了 dim_array
和 id_array
但您还没有定义它们。
p.s.: 我已经将你问题的标签从 c++11 修改为 c++14 因为,如果你编译
constexpr size_t n = dim_array[K];
你编译的c++14代码(std::array
中的operator[]
是constexpr
,从c++14开始)
-- 编辑 --
OP
Seems not to work, but if I move the definition of dim_array into the function it compiles :/
抱歉:我回答了你原来的问题;你修改了它(删除 id_array
)所以你只需要添加 dim_array
的定义。
下面的代码对我来说没问题(好吧...嗯...有一些警告)
// Example program
#include <iostream>
#include <string>
#include <array>
template <size_t K, std::size_t... IDs>
struct L1 {
template <std::size_t... DIMS>
struct L2 {
static constexpr std::array<size_t, sizeof...(DIMS)> dim_array = {{DIMS...}};
static void run() {
constexpr size_t n = dim_array[K];
for(int i = 0; i < sizeof...(DIMS); i++) {
std::cout<<dim_array[i]<<" ";
}
std::cout << std::endl;
L1<K-1, IDs...>::template L2<DIMS...>::run();
}
};
};
template <std::size_t... IDs>
struct L1<0, IDs...> {
template <std::size_t... DIMS>
struct L2 {
static constexpr std::array<size_t, sizeof...(DIMS)> dim_array = {{DIMS...}};
static void run() {
}
};
};
template <std::size_t K, std::size_t... IDs>
template <std::size_t ... DIMS>
constexpr std::array<std::size_t, sizeof...(DIMS)> L1<K, IDs...>::L2<DIMS...>::dim_array;
int main() {
L1<3, 4,3,2,1>::template L2<2,3,4,5>::run();
}
而且,是的:如果您将 dim_array
的定义移动到 run()
中,它就可以工作。因为,在那种情况下,声明也是定义。
关于C++11 : Recursion in a stacked variadic struct (I get an linker error),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46079598/
虽然我在理解递归方面没有任何问题,但我似乎无法理解汉诺塔问题的递归解决方案。这是来自 Wikipedia 的代码: procedure Hanoi(n: integer; source, dest,
虽然我在理解递归方面没有任何问题,但我似乎无法理解汉诺塔问题的递归解决方案。这是来自 Wikipedia 的代码: procedure Hanoi(n: integer; source, dest,
The Third Commandment的 The Little Schemer状态: When building a list, describe the first typical elemen
编辑 有关映射递归的“正确”Groovy 式方法,请参阅下面的@tim 解决方案。由于 Map findRecursive 在 Groovy 中尚不存在,如果您发现自己在应用程序的各个部分都需要此功能
这是尝试求解 3*3 的线性方程并打印结果,但在注释行中遇到了问题: 我在程序外部定义了 LinearSolution 模块,我应该在程序内部定义它吗?有什么区别? 为什么说该语句是递归的,你知道,当
我正在学习 Clojure 并从复制 Python 程序的功能开始,该程序将通过遵循(非常简单的)隐马尔可夫模型来创建基因组序列。 一开始,我坚持使用我已知的串行编程方式并大量使用 def 关键字,从
我有一个记录: type node = { content : string; parent : node option;
我发现 Java 8 已经显着清理了将文件内容读取到字符串中的过程: String contents = new String(Files.readAllBytes(Paths.get(new URI
我目前正在用 Java 编写一个图形库,我想要一个工具来可视化一些图形。我发现了 Graph-viz,它恰好是一种很好的(尽管有缺陷)做到这一点的方法。 在我的模型中,图由节点和边组成。每个节点都有一
昨天我遇到了这个pipes Common Lisp 库。它在某种程度上看起来很像 clojure 的惰性序列抽象,因此我决定使用它来实现 Common Lisp 中递归惰性斐波那契序列定义的经典(且优
昨天我遇到了这个pipes Common Lisp 库。它在某种程度上看起来很像 clojure 的惰性序列抽象,因此我决定使用它来实现 Common Lisp 中递归惰性斐波那契序列定义的经典(且优
我在开发一个递归函数时遇到了问题,该函数将查看两个列表是否彼此相等,包括查看子列表。到目前为止,我有: (defun are-equal2 (X Y) (cond ((null X) nil)
在 Abelson/Sussman 的经典著作《计算机程序的结构和解释》中,在关于树递归和斐波那契数列的第 1.2.2 节中,他们展示了这张图片: 计算第 5 个斐波那契数时生成的树递归过程 然后他们
SICP中的Section 1.2.1 中的作者在下面给出了这样的代码示例,以显示如何使用迭代过程解决阶乘问题: (define (factorial n) (fact-iter 1 1 n))
我继承了 的遗产Fortran 77 我现在的代码 试试 前往 编译 Fortran 2003 标准。我对 Fortran (我知道 C 和 Python)一无所知,我正在学习它。 下面的代码片段会导
这个警告来自哪里: Warning: `recursive` is deprecated, please use `recurse` instead 我在这里看到过:https://r-pkgs.or
Section 2.2 of the Happy user manual建议您使用左递归而不是右递归,因为右递归是“低效的”。基本上他们是说,如果您尝试解析一长串项目,右递归将溢出解析堆栈,而左递归使
问题 我有一个递归 CTE 查询,但是在创建循环时它失败了。我已经修复了简单的循环(例如 1 -> 2 -> 1),但无法修复更复杂的循环(例如 1 -> 2 -> 3 -> 2)。 查询详情 测试表
看完麻省理工学院的动态规划讲座后,我想练习一下斐波那契数列。我首先编写了朴素的递归实现,然后添加了内存。这是内存版本: package main import ( "fmt" ) func f
按照以下步骤,Cloudformation 堆栈可以进入递归锁: 在不导入值的情况下设置 CF(并创建堆栈) 使用相同的 CF 模板创建 soms 输出值(并更新堆栈) 在同一 CF 模板(和更新堆栈
我是一名优秀的程序员,十分优秀!