0
通行證下面的功能,通過此Binary Tree:OCaml的二叉樹
let rec inorder(t:tree) : int list =
begin match t with
| Empty -> []
| Node (left, x, right) -> inorder left @ (x :: inorder right)
end
爲什麼結果[1; 2; 3; 4; 5; 6; 7]和不[1; 2; 3; 4 ; 5; 7; 6]?
樹實際上是在一個問題集中給出 - 也許答案的關鍵是錯誤的,然後 – user