瀏覽代碼

Create binary tree type

DricomDragon 5 年之前
父節點
當前提交
867d9acb2f
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      tree.hs

+ 2 - 0
tree.hs

@@ -0,0 +1,2 @@
+data BinaryTree = Leaf | Node Integer BinaryTree BinaryTree
+