0

我的单独功能有问题。单独返回一个列表,该列表在列表 l 的每个 k 元素之后插入元素 x(从列表末尾开始计数)。例如,单独的 (1, 0, [1,2,3,4]) 应该返回 [1,0,2,0,3,0,4] 和单独的 (3, 0, [1,2,3, 4]) 应该返回 [1,0,2,3,4]。每当我对其进行任何测试时,我都会收到错误消息:

! Unbound value identifier: separate 

这是我正在使用的代码:

 (*Function returns length of lst   *)
fun length(lst: int list): int =
  case lst of
    [] => 0
  | h::t => 1 + length(t) 

(*Insert element x at the kth position in the list 
  and return the new list*)
fun kinsert [] x k = [x]
  | kinsert ls x 0 = x::ls
  | kinsert (l::ls) x k = l::(kinsert ls x (k - 1)) 

(* c: keeps track of where we are in the list 
   n: determines if we insert element at given position  
   z: holds length of the list *)
fun sep_help k x l c n z= 
  if c = z then l 
  else if n = k then (sep_help k x (kinsert l x c) (c+2) 0 z )
  else (sep_help k x l (c+2) (n+1) z) ; 

(*Returns list l with x inserted after each k element *)
fun separate (k: int, x: 'a, l: 'a list) : 'a list = 
  | separate k x l = (sep_help k x l 0 0 (length l));  

任何人都知道可能导致错误的原因是什么?

4

1 回答 1

1

separate看起来像是两个不同定义的合并-首先是没有定义的未咖喱版本,然后是有定义的咖喱版本。

你可能是说

fun separate (k: int, x: 'a, l: 'a list) : 'a list = sep_help k x l 0 0 (length l);  

但是通过列表向后工作会使事情变得相当复杂。
从头到尾工作要容易得多,并且在处理之前和之后反转列表。
然后,您需要的“全部”是一个助手,它在列表中的每个 k:th 位置插入一个元素。
像这样的东西,也许:

(*Returns list l with x inserted after each k element *)
fun separate (k: int, x: 'a, l: 'a list) : 'a list = 
  let
    fun kinsert [] _ = []
      | kinsert ls 0 = x::(kinsert ls k)
      | kinsert (l::ls) i = l::(kinsert ls (i-1))
in
    List.rev (kinsert (List.rev l) k)
end
于 2018-03-05T16:13:10.523 回答