- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试编写一个元函数来从定义为的编译时 vector 中删除相邻的重复项
template <int...>
struct Vector;
例如。如果输入是:
Vector<1, 2, 2, 3, 3, 4, 5, 5>
输出应该是:
Vector<1, 2, 3, 4, 5>
但是如果输入是:
Vector<1, 2, 2, 3, 4, 4, 1, 5>
输出应该是:
Vector<1, 2, 3, 4, 1, 5>
如果 vector 未排序,则预计会出现重复。
我尝试了以下代码:
#include <iostream>
#include <type_traits>
template <int...>
struct Vector;
template <int I, int... L>
struct Vector<I, L...> {
int First = I;
};
template <int Elem, typename Vector>
struct Append {
using type = Vector;
};
template <template<int...> class Vector, int Elem, int... VecArgs>
struct Append<Elem, Vector<VecArgs...>> {
using type = Vector<Elem, VecArgs...>;
};
template <typename Vector>
struct uniq;
template <template<int...> class Vector, int First, int... Last>
struct uniq<Vector<First, First, Last...>> {
using type = typename uniq<Vector<Last...>>::type;
};
template <template<int...> class Vector, int First, int... Last>
struct uniq<Vector<First, Last...>> {
using type = typename Append<First, uniq<Vector<Last...>>::type>::type;
};
template <template<int> typename Vector, int I>
struct uniq<Vector<I>> {
using type = Vector<I>;
};
int solution(int X) {
static_assert(std::is_same<uniq<Vector<1, 2, 2, 3, 4, 4>>::type, Vector<1, 2, 3, 4>>::value);
static_assert(std::is_same<uniq<Vector<1>>::type, uniq<Vector<1>>::type>::value);
//static_assert(std::is_same<Vector<1, 2, 3>, Append<1, Vector<2, 3>>::type>::value);
return X;
}
int main() {
solution(1);
}
我正在尝试递归删除重复项。如果前两个元素相等,则丢弃第一个元素并对其余元素调用 uniq。否则取第一个元素并为剩余元素追加 uniq。
但是这段代码不起作用。产生以下错误。
meta.cpp:32:65: error: type/value mismatch at argument 2 in template parameter list for ‘template<int Elem, class Vector> struct Append’
using type = typename Append<First, uniq<Vector<Last...>>::type>::type;
^
meta.cpp:32:65: note: expected a type, got ‘uniq<Vector<Last ...> >::type’
meta.cpp: In function ‘int solution(int)’:
meta.cpp:42:61: error: ‘type’ is not a member of ‘uniq<Vector<1, 2, 2, 3, 4, 4> >’
static_assert(std::is_same<uniq<Vector<1, 2, 2, 3, 4, 4>>::type, Vector<1, 2, 3, 4>>::value);
^~~~
meta.cpp:42:61: error: ‘type’ is not a member of ‘uniq<Vector<1, 2, 2, 3, 4, 4> >’
meta.cpp:42:84: error: template argument 1 is invalid
static_assert(std::is_same<uniq<Vector<1, 2, 2, 3, 4, 4>>::type, Vector<1, 2, 3, 4>>::value);
^~
meta.cpp:43:46: error: ‘type’ is not a member of ‘uniq<Vector<1> >’
static_assert(std::is_same<uniq<Vector<1>>::type, uniq<Vector<1>>::type>::value);
^~~~
meta.cpp:43:46: error: ‘type’ is not a member of ‘uniq<Vector<1> >’
meta.cpp:43:69: error: ‘type’ is not a member of ‘uniq<Vector<1> >’
static_assert(std::is_same<uniq<Vector<1>>::type, uniq<Vector<1>>::type>::value);
^~~~
meta.cpp:43:69: error: ‘type’ is not a member of ‘uniq<Vector<1> >’
meta.cpp:43:73: error: template argument 1 is invalid
static_assert(std::is_same<uniq<Vector<1>>::type, uniq<Vector<1>>::type>::value);
^
meta.cpp:43:73: error: template argument 2 is invalid
我尝试了很多东西。例如。 std::conditional 但似乎无法弄清楚为什么没有任何效果。我是模板元编程的新手,在互联网上找不到很多示例。
如有任何帮助,我们将不胜感激。非常感谢。
最佳答案
您不需要模板模板参数template<int...> class Vector
.
当前两个元素相等时,应保留其中一个:
template <template<int...> class Vector, int First, int... Last>
struct uniq<Vector<First, First, Last...>> {
using type = typename uniq<Vector<First, Last...>>::type;
// ^^^^^
};
你也应该处理空包。最简单的方法就是添加 ...
:
template<int... I>
struct uniq<Vector<I...>> {
using type = Vector<I...>;
};
在这些更改之后,您的代码将编译并且静态断言将通过。 Demo .
为了完整起见,这里是更正后的代码:
template<int Elem, typename Vector>
struct Append;
template<int Elem, int... VecArgs>
struct Append<Elem, Vector<VecArgs...>> {
using type = Vector<Elem, VecArgs...>;
};
template<typename Vector>
struct uniq;
template<int First, int... Last>
struct uniq<Vector<First, First, Last...>> {
using type = typename uniq<Vector<First, Last...>>::type;
};
template<int First, int... Last>
struct uniq<Vector<First, Last...>> {
using type = typename Append<First,
typename uniq<Vector<Last...>>::type>::type;
};
template<int... I>
struct uniq<Vector<I...>> {
using type = Vector<I...>;
};
关于c++ - 从编译时 vector 中删除相邻重复项的元程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63109411/
我想在数组中找到连接(相邻)的元素。 例如,在数组中: [1,2,3,4,5] 要访问所有 2 个连通元素,输出将为: 1,2 2,3 3,4 4,5 要访问所有 3 个连通元素,输出将为 1,2,3
我有三个 Sprite ,彼此堆叠在一起。 我修改了他们的 transform.matrix 以给出他们一致增长的外观。 但是,根据比例因子,瓷砖之间有时会出现小裂缝。 cracks between
我正在阅读有关 Margin Collapsing 的文章,我遇到了这个:margin Adjacent siblings The margins of adjacent siblings are c
float div 的框阴影被其右侧的邻居截断,但左侧未截断。 我玩过 z-index 和 overflow: visible,但没有用。 HTML: CSS: .doc-page {
我有多个元素说卡片。这些卡片需要水平堆叠并且高度需要相同。这正在发生在我身上。 每张卡片都有图像、文本和按钮。每张卡片的图像和文本应采用任何卡片中的最大高度,以便它们正确对齐。这不会发生在我身上。 如
我有这个 GUI 我使用了 GridBagLayout,但我不知道为什么 Plain Bread 复选框与其相应的标签之间有很大的间距。 而且,我尝试仅增加按钮沿 x 轴的间距,但尽管重置了插图,但沿
在过去,我已经为自定义元素符号使用了数百次列表项背景图像,但不知何故从未遇到过这个问题。 基本上,我有一个 IMG float 在无序列表的左侧。元素符号背景图像设置在每个 LI 的左上角。但是, f
我正在使用 Bootstrap 框架并使用 2 列网格。 html 内容有标题、链接、副标题和文本。这增加了该列的高度。我希望它旁边的列与其高度匹配(以便图像显示)没有设置高度图像不显
我有一个 php 代码可以生成数百个 和 标签。我的问题如下,我有以下内容: X X 我想要第二个的边框颜色更重要,以便共享边框显示为灰色而不是黑色。我可以在第二个 td 中使用重要性或继承标签吗?
Place holder for Radio1 Place holder for Radio2 在此,我只想要 与相应的单选按钮相关联是可见的,但是...... * { visibilit
我正在尝试在 html 中实现以下布局。更大的 div 1。然后是它旁边的另一个 div,顶部有一个边距。如果我给 float: left 给第一个 div,给第二个 div margin-top 也
假设我有 2 个名为 IN 和 MASK 的二进制输入。实际字段大小可能是 32 到 256 位,具体取决于用于完成任务的指令集。两个输入都会改变每次调用。 Inputs: IN = ...110
我想知道是否有一种简洁/一行的方法来执行以下操作: pack :: [a] -> [(a, a)] pack [] = [] pack [_] = [] pack (x:y:xs
下面的代码分为两部分,一部分处理头部的管理,另一部分处理“主体”,当我执行代码时引发下面的异常,我该如何解决该错误?我不知道下面的错误是什么原因造成的,错误是在react的解析上 错误: Line
http://imgur.com/a/DA5i4 在上面的两张图片中你可以看到我有一个主容器,里面装满了 3 个较小的 div,一个大的在中间,两个瘦的在两边,但是右边直到中间的 div 下面才开始。
正如我在标题中解释的所有内容,然后我将只为你们提供我现在拥有的代码,我一直在努力实现我想要的东西很长时间但没有运气......它表现得像响应式的,但即使调整大小我也想将其保持在原位...截图
我编写了一个 jquery 插件,它使用 Flot 将 HTML 表格转换为图表。 HTML 是从 XSLT 生成的,在 XSLT 中我有以下代码来调用我的插件。此代码尝试在 blah1 和 blah
我正在尝试实现这样的布局。 aaa xxxxxx oooo aaa xxxxxx oooo xxxxxx xxxxxx bbb xxxxxx cccc bbb xxxxxx cc
在包含网格的 2 个 div 上使用内联 css 显示不起作用 最佳答案 为您的 div 指定宽度并根据您的要求使用“float: left”或“right”。不要对 div 使用“内联” 例如 CS
我将 MVC 项目中的一些代码返回到网页。我无法用撇号解决问题,当我的电话看起来像这样时,我如何忽略它 document.getElementById('some').insertAdjacentHT
我是一名优秀的程序员,十分优秀!