diff options
author | Camil Staps | 2015-03-28 11:28:39 +0100 |
---|---|---|
committer | Camil Staps | 2015-03-28 11:28:39 +0100 |
commit | f16bd639aefed9bd1a340284f3bd48c47e0410ce (patch) | |
tree | 56016066873aaca6e17209c1e3a7ab8eab65ee83 /week7/camil/BinSearchTree.dcl | |
parent | h (diff) |
8.3 camil
Diffstat (limited to 'week7/camil/BinSearchTree.dcl')
-rw-r--r-- | week7/camil/BinSearchTree.dcl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/week7/camil/BinSearchTree.dcl b/week7/camil/BinSearchTree.dcl new file mode 100644 index 0000000..696b065 --- /dev/null +++ b/week7/camil/BinSearchTree.dcl @@ -0,0 +1,7 @@ +definition module BinSearchTree
+
+import StdClass
+import BinTree
+
+is_geordend :: (Tree a) -> Bool | Ord a // meest algemene type
+is_gebalanceerd :: (Tree a) -> Bool | Ord a // meest algemene type
|