- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码。我花了很多时间试图弄清楚为什么它提示我的 List.foldback 函数的第二个参数。它提示说它希望“acc”为 (char * bool * (Direction -> int * int) * int)。这对我来说没有任何意义,因为 documentation表明它只匹配“状态”。在这种情况下,我试图使“状态”成为“运动列表”。
有关我正在做的事情的完整描述,请访问 the Code golf voronoi problem
type Direction = Left=0 | Up=1 | Right=2 | Down=3
type Movement = (char * (int * int) * Direction)
let rec masterClaims (items:Movement list) =
items
// Execute these methods in the order in which they are passed.
|> List.map (fun (ch, coord, dir) ->
(
ch,
// This function does the claiming. This has to be
// done in the order of the input list.
claimCells ch coord,
getCoordinate coord,
int dir
))
// Create next items and fold them into the final results for the layer.
// Use foldback so that they are pre-pended to the final list in the correct
// order.
|> List.foldBack (fun (ch, wasClaimed, getCoordinate, directionInt) (acc:Movement list) ->
if (wasClaimed) then
// Create a list of next nodes to inspect
// [counter-clockwise; forward; clockwise]
[(directionInt+3)%4;directionInt;(directionInt+1)%4]
|> List.map enum<Direction>
|> List.iter (fun direction ->
(
ch,
getCoordinate direction,
direction
) :: acc |> ignore)
acc // should be Movement list
) List.empty<Movement>
// The theory here is that we will execute the fold
// for every item before we pass the entire collection
// to the recursive call.
|> masterClaims
Tomas 修复后的代码
let inline foldBackNormal f s input = List.foldBack f input s
type Direction = Left=0 | Up=1 | Right=2 | Down=3
type Movement = (char * (int * int) * Direction)
let rec masterClaims (items:Movement list) =
items
// Execute these methods in the order in which they are passed.
|> List.map (fun (ch, coord, dir) ->
(
ch,
// This function does the claiming. This has to be
// done in the order of the input list.
claimCells ch coord,
getCoordinate coord,
int dir
))
// Create next items and fold them into the final results for the layer.
// Use foldback so that they are pre-pended to the final list in the correct
// order.
|> foldBackNormal (fun (ch, wasClaimed, getCoordinate, directionInt) (acc:Movement list) ->
if (wasClaimed) then
// Create a list of next nodes to inspect
// [counter-clockwise; forward; clockwise]
[(directionInt+3)%4;directionInt;(directionInt+1)%4]
|> List.map enum<Direction>
|> List.iter (fun direction ->
(
ch,
getCoordinate direction,
direction
) :: acc |> ignore)
acc // should be Movement list
) List.empty<Movement>
// The theory here is that we will execute the fold
// for every item before we pass the entire collection
// to the recursive call.
|> masterClaims
最佳答案
List.foldBack
函数有点奇怪,因为它将输入列表作为参数 before 最后一个和初始状态作为 last 论点。因此,切换最后两个参数的顺序应该可以解决问题。或者,您可以定义一个具有切换参数顺序的助手并使用它:
let foldBackNormal f s input = List.foldBack f input s
这是出于历史原因(与 OCaml 的兼容性),但我相信您不是唯一觉得这令人困惑的人 :-)。
关于f# 折返 : Does accumulator need to be the same as list type?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21167512/
我只是在阅读有关 HQ9+ 编程语言的一些内容: https://esolangs.org/wiki/HQ9+ , https://en.wikipedia.org/wiki/HQ9+ , 和 htt
首先,我是 Mongo DB 的新手。一直在遵循一些指南和示例,例如 https://www.programcreek.com/java-api-examples/index.php?api=com.
当我写作时 long long sum = accumulate(a.begin(), a.end(), 0); 或者 long long sum = accumulate(a.begin(), a.
当我写作时 long long sum = accumulate(a.begin(), a.end(), 0); 或者 long long sum = accumulate(a.begin(), a.
我有一个关于 accumulate() 和运算符重载的问题。 我有一个类 Order 包含 private: Customer cust; std::vector vP; 和一个类 Purchase
我在 C++ 中使用 opencv 库,我正在尝试计算 vector difference 中包含的点的总和 Point 类具有 x 属性,即 float . float pointSumX(Poin
我试图将以下循环转换为 accumulate() 调用,但我失败了: total = 0 for h in heat_values: total += h total -= total
如果我像下面这样在 C++ 中使用 accumulate 函数 std::vector v2{1, 2, 3, 4, 5}; int sum = 0; std::cout values{ 1,
有没有办法按名称获取已注册的 Spark 累加器,而无需传递实际引用?期望的行为: val cnt1 = sc.longAccumulator("cnt1") val cnt2 = something
std::accumulate 的 C++ 引用没有提到 std::accumulate 可能抛出的任何异常,仍然它的定义不包含 noexcept。假设一个人使用不抛出的类型和操作,在声明为 noex
尝试“滥用”std::accumulate 算法(为什么它出现在“数字” header 中?;)) template std::string strjoin(Range&& range, Sepera
这让我很困惑,如果有人能帮助我,我将不胜感激。 (编辑:以为这是一个模板化问题,我误会了) 我想使用 gnu 的并行累积算法(存储在 #include 中)添加以下类的多个拷贝 类故意不做太多,我觉
错误似乎与 std::accumulate() 或迭代器有关,或者我是否访问了无效指针? int m = 0; std::vector v{4,-3,0,-5}; for(std::vector::i
此代码是从另一个用户问题复制而来的,我很好奇这里的 accumulate 是如何工作的。我从这段代码中得到了正确的结果,但想知道 lcm 在“累积”时采用什么参数。初始化为 A,范围之和为 b?请帮忙
如何统计满足 lower_bound(42), upper_bound(137) 的元素数量从这段代码?? accumulate(values.lower_bound(42), values.uppe
我在测试代码中使用 std::accumulate 得到了意想不到的结果。我正在尝试添加一个大的 double vector ,但由于某种原因,该值溢出了: #include #include #
我试着编写一个基本的编译时版本的std::accumulate()通过定义一个类模板,该模板将递归迭代给定范围并在每次迭代时添加元素。 在 Ubuntu 14.04 上使用 gcc 4.8.4 编译测
我刚刚写了一个小的辅助函数作为 std::accumulate 的包装: template inline auto accumulate(FwdIter begin, FwdIter end) ->
需要以下示例的更漂亮的解决方案,但需要使用 std::accumulate。 #include #include #include class Object { public: Obje
是否可以指示 Redis 累积一组操作,然后发出“publish all”命令来发布整组操作(按线性顺序)? 所以你会以某种方式设置一个标记(startpublish ?)并且缓存会累积从中接收到的所
我是一名优秀的程序员,十分优秀!