我一直在阅读软件基础并解决其中的问题。这是我试图定义的定义之一:
Fixpoint split {X Y : Type} (l : list (X*Y)) : (list X) * (list Y)
基本上它是haskell的unzip
版本。
我实现了这样:
Fixpoint split2 {X Y : Type} (l : list (X*Y)) (g :(list X) * (list Y))
: (list X) * (list Y) :=
match l with
| [] => g
| (x,y)::xs => split2 xs ((fst g) ++ [x],(snd g) ++ [y])
end.
Fixpoint split {X Y : Type} (l : list (X*Y))
: (list X) * (list Y) :=
split2 l ([],[]).
我有两个问题:
split
这样的帮助函数的情况下定义split2
?答案 0 :(得分:1)
Coq中有let
。您可以而且应该只翻译标准的Haskell定义,避免使用++
:
Fixpoint split {A B} (l : list (A * B)) : list A * list B :=
match l with
[] => ([], [])
| (x, y) :: xs => let (xs2, ys2) := split xs in (x::xs2, y::ys2)
end.