OCaml
OCaml copied to clipboard
Algorithms Implemented in OCaml
I have added a recursive implementation of bubble sort with an explanation of the algorithm as a comment.
Partial implementation of BFS in ocaml, imperative needs work However, functional recursive implementation works new file: ocaml_bfs.ml
Implemented Insertion Sort in OCaml with documentation and main example function. Utilizes same unsorted list and output style as existing quicksort.ml for consistency. - Adds insertionsort.ml to the Sorts directory...