Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
bin_tree.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82type 'a bin_tree = | Nil | Node of 'a * 'a bin_tree * 'a bin_tree let rec height (t: 'a bin_tree) : int = match t with | Nil -> -1 | Node(_, l, r) -> 1 + max (height l) (height r) let rec nb_leaf (t: 'a bin_tree) : int = match t with | Nil -> 0 | Node(_, Nil, Nil) -> 1 | Node(_, l, r) -> nb_leaf l + nb_leaf r let rec nb_internal_nodes (t: 'a bin_tree) : int = match t with | Nil -> 0 | Node(_, Nil, Nil) -> 0 | Node(_, l, r) -> 1 + nb_internal_nodes l + nb_internal_nodes r let internal_nodes (t: 'a bin_tree) : 'a list = let rec aux (t: 'a bin_tree) (nodes: 'a list) = match t with | Nil | Node(_, Nil, Nil) -> [] | Node(v, l, r) -> aux l (v :: aux r nodes) in aux t [] let rec search_node (t: 'a bin_tree) (x: 'a) : bool = match t with | Nil -> false | Node(v, _, _) when v = x -> true | Node(_, l, r) -> search_node l x || search_node r x let is_symmetric (t: 'a bin_tree) : bool = let rec aux (t: 'a bin_tree) = match t with | Nil -> Nil | Node(v, l, r) -> Node(v, aux l, aux r) in t = (aux t) let rec is_strict (t: 'a bin_tree) : bool = match t with | Nil -> true | Node (_, Nil, Nil) -> true | Node (_, l, r) -> l <> Nil && r <> Nil && is_strict l && is_strict r let rec is_right_comb (t: 'a bin_tree) : bool = match t with | Nil -> true | Node(_, Nil, r) -> is_right_comb r | _ -> false let rec is_left_comb (t: 'a bin_tree) : bool = match t with | Nil -> true | Node(_, r, Nil) -> is_left_comb r | _ -> false let is_comb (t: 'a bin_tree) : bool = match t with | Nil -> true | Node (_, Nil, Nil) -> true | Node (_, Nil, r) -> is_right_comb r | Node (_, l, Nil) -> is_left_comb l | _ -> false let is_perfect (t: 'a bin_tree) : bool = let rec aux (t: 'a bin_tree) = match t with | Nil -> (true, 0) | Node(_, l, r) -> let (verif_l, h_l) = aux l in let (verif_r, h_r) = aux r in let verif = verif_l && verif_r && (h_l = h_r) in (verif, max h_l h_r + 1) in let (verif, _) = aux t in verif