Difference between revisions of "Binary Search Tree Assignment"
Jump to navigation
Jump to search
(→order) |
|||
Line 8: | Line 8: | ||
=Code to Investigate= | =Code to Investigate= | ||
==order== | ==order== | ||
− | [http://sml-family.org/Basis/general.html#SIG:GENERAL.order:TY order] | + | SML's General structure's [http://sml-family.org/Basis/general.html#SIG:GENERAL.order:TY order] |
datatype order = LESS | EQUAL | GREATER | datatype order = LESS | EQUAL | GREATER | ||
Values of type order are used when comparing elements of a type that has a linear ordering. | Values of type order are used when comparing elements of a type that has a linear ordering. | ||
+ | |||
==list== | ==list== | ||
We will implement some of the higher ordered functions [http://sml-family.org/Basis/list.html list] provides on our binary tree. | We will implement some of the higher ordered functions [http://sml-family.org/Basis/list.html list] provides on our binary tree. |
Revision as of 03:44, 22 February 2020
We will build some of the Higher Order Function Hall of Fame inductees but for a tree datatype.
datatype 'a tree = LEAF | BRANCH of 'a tree * 'a * 'a tree
Contents
Code to Investigate
order
SML's General structure's order
datatype order = LESS | EQUAL | GREATER
Values of type order are used when comparing elements of a type that has a linear ordering.
list
We will implement some of the higher ordered functions list provides on our binary tree.
BinaryTree
source file: binary_tree/binary_tree.sml
datatype 'a tree = LEAF | BRANCH of 'a tree * 'a * 'a tree
core
insert
fun insert (compare_function:(('a * 'a) -> order)) (t:'a tree) (item:'a) : 'a tree = raise NotYetImplemented
remove
fun remove (equal_less_greater_function:'a -> order) (t:'a tree) : 'a tree = raise NotYetImplemented
higher order functions
find
reference: List.find
fun find (equal_less_greater_function : 'a -> order) (t:'a tree) : 'a option = raise NotYetImplemented
find_order_hof
fun find_order_hof (order:traversal_order) (predicate:'a->bool) (t:'a tree) : 'a option = raise NotYetImplemented
map
reference: List.map
fun map(f : 'a -> 'b, t : 'a tree) : 'b tree = raise NotYetImplemented
filter
reference: List.filter
fun filter(predicate : 'a -> bool, t : 'a tree) : 'a tree = raise NotYetImplemented
find_lnr
reference: List.find
reference: In-order traversal
fun find_lnr(predicate : 'a -> bool, t : 'a tree) : 'a option = raise NotYetImplemented
fold_lnr
reference: List.foldl
reference: In-order traversal
fun fold_lnr(f : 'a * 'b -> 'b, init : 'b, t : 'a tree ) : 'b = raise NotYetImplemented
Application
source file: binary_tree/apps_using_binary_tree.sml
max_height
fun max_height(t : 'a BinaryTree.tree) : int = raise NotYetImplemented
sum_int_tree
fun sum_int_tree(t : int BinaryTree.tree) : int = raise NotYetImplemented
Testing
studioTree/unittest_tree.sml