Commit d740046e authored by Sander Mathijs van Veen's avatar Sander Mathijs van Veen

Merge branch 'master' of vo20.nl:/git/uva

parents 380f95d7 573f62f4
open List open List
(* Sort a list l using the quicksort algorithm *) (* Sort a list l using the quicksort algorithm *)
let rec quickSort (l:int list) = let rec quickSort (l : int list) =
match l with match l with
| ([] | [_]) -> l | ([] | [_]) -> l
| pivot::rest -> | pivot::rest ->
...@@ -11,7 +11,7 @@ let rec quickSort (l:int list) = ...@@ -11,7 +11,7 @@ let rec quickSort (l:int list) =
;; ;;
(* Sort a list l using the merge sort algorithm *) (* Sort a list l using the merge sort algorithm *)
let rec mergeSort (l:int list) = let rec mergeSort (l : int list) =
match l with match l with
(* If the list is of length 0 or 1, then it is already sorted *) (* If the list is of length 0 or 1, then it is already sorted *)
| ([] | [_]) -> l | ([] | [_]) -> l
......
open List open List
(* A Node has a key, value and list of children *) (* A trie node has a key, a value and a list of children *)
type ('a, 'b) trie = Empty | Node of 'a list * 'b * ('a, 'b) trie list type ('a, 'b) trie = Empty | Node of 'a list * 'b * ('a, 'b) trie list
let rec starts_with l s = (* Helper function, checks if a list l start with a sublist s *)
(length s) <= (length l) && match s with let rec starts_with l s = match s with
| [] -> true | [] -> true
| h::t -> h = (hd l) && starts_with (tl l) t | hs::ts -> match l with
;; | [] -> false
| hl::tl -> hs = hl && starts_with tl ts
(* Insert a new (key, value) pair into a trie *) (* Insert a new (key, value) pair into a trie *)
let rec insert trie key value = (* TODO: this doesn't work completely yet *)
match trie with let rec insert trie key value = match trie with
| Empty -> Node (key, value, []) (* Root *) | Empty -> Node (key, value, []) (* Root *)
| Node (k, v, children) -> | Node (k, v, children) ->
if k = key then if k = key then
raise (Failure "Inserted key already exists in trie") raise (Failure "Inserted key already exists in trie")
else if starts_with key k then else if not (starts_with key k) then
raise (Failure "Inserted key does not start with node key")
else
(* Inserted key should be in this node because it starts with (* Inserted key should be in this node because it starts with
* the node's key *) * the node's key *)
let rec walk_nodes = function let rec walk_nodes = function
| [] -> Empty | [] -> Empty
| node::tail -> | node::tail -> match node with
match node with
| Empty -> Empty | Empty -> Empty
| Node (k, _, _) -> | Node (k, _, _) ->
if starts_with key k then if starts_with key k then
...@@ -45,13 +47,52 @@ let rec insert trie key value = ...@@ -45,13 +47,52 @@ let rec insert trie key value =
let move, siblings = partition matches_key children in let move, siblings = partition matches_key children in
Node (k, v, (Node (key, value, move))::siblings) Node (k, v, (Node (key, value, move))::siblings)
| node -> node | node -> node
(* Helper function, checks if a trie is not empty *)
let non_empty = function | Empty -> false | _ -> true
(* Remove a key from a given trie *)
let rec remove trie key = match trie with
| Empty -> Empty
| Node (k, v, children) ->
if k = key then
(* Key match, remove the node *)
Empty
else if starts_with key k then
(* No full key match but prefix does match, match all children *)
let match_with_key node = match node with
| Empty -> Empty
| Node (k, _, _) -> if k = key then Empty else remove node key
in
Node (k, v, (filter non_empty (map match_with_key children)))
else else
raise (Failure "Inserted key does not start with node key") (* No prefix match, so no need to check child nodes *)
;; trie
(* Remove all keys that start with a given prefix from a trie.
* Basically does the same as the 'remove' function above, only using
* 'starts_with' instead of literally matching the key *)
let rec removeAll trie prefix = match trie with
| Empty -> Empty
| Node (k, v, children) ->
if starts_with k prefix then
(* Prefix match, remove the node *)
Empty
else if starts_with prefix k then
(* No full prefix match yet, but possibly in children so continue
* matching them *)
let match_with_prefix node = match node with
| Empty -> Empty
| Node (key, _, _) -> if starts_with key prefix then Empty
else removeAll node prefix
in
Node (k, v, (filter non_empty (map match_with_prefix children)))
else
(* Prefix is not going to match in this subtree, don't remove it *)
trie
(* Look up a value associated with a key *) (* Look up a value associated with a key *)
let rec lookup trie key = let rec lookup trie key = match trie with
match trie with
| Empty -> None (* Trie is empty, so no result *) | Empty -> None (* Trie is empty, so no result *)
| Node (k, value, children) -> | Node (k, value, children) ->
if k = key then if k = key then
...@@ -70,11 +111,9 @@ let rec lookup trie key = ...@@ -70,11 +111,9 @@ let rec lookup trie key =
else else
(* Not found *) (* Not found *)
None None
;;
(* Find all (key, value) pairs whose key start with a given prefix *) (* Find all (key, value) pairs whose key start with a given prefix *)
let rec matches trie key = let rec matches trie key = match trie with
match trie with
| Empty -> [] | Empty -> []
| Node (k, value, children) -> | Node (k, value, children) ->
let rec match_nodes = function let rec match_nodes = function
...@@ -82,9 +121,4 @@ let rec matches trie key = ...@@ -82,9 +121,4 @@ let rec matches trie key =
| node::rest -> (matches node key) @ (match_nodes rest) | node::rest -> (matches node key) @ (match_nodes rest)
in in
(if starts_with k key then [(k, value)] else []) (if starts_with k key then [(k, value)] else [])
@ match_nodes children @ match_nodes children
;;
(*let a = Node ([1;2;3], "a", []);;
let b = Node ([1;3], "b", [a]);;
let c = Node ([3;4], "c", [b]);;*)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment