Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uva
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
uva
Commits
d740046e
Commit
d740046e
authored
13 years ago
by
Sander Mathijs van Veen
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of vo20.nl:/git/uva
parents
380f95d7
573f62f4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
funclang-taddeus/series4/ass8.ml
+2
-2
2 additions, 2 deletions
funclang-taddeus/series4/ass8.ml
funclang-taddeus/series4/ass9.ml
+57
-23
57 additions, 23 deletions
funclang-taddeus/series4/ass9.ml
with
59 additions
and
25 deletions
funclang-taddeus/series4/ass8.ml
+
2
−
2
View file @
d740046e
open
List
(* Sort a list l using the quicksort algorithm *)
let
rec
quickSort
(
l
:
int
list
)
=
let
rec
quickSort
(
l
:
int
list
)
=
match
l
with
|
([]
|
[
_
])
->
l
|
pivot
::
rest
->
...
...
@@ -11,7 +11,7 @@ let rec quickSort (l:int list) =
;;
(* Sort a list l using the merge sort algorithm *)
let
rec
mergeSort
(
l
:
int
list
)
=
let
rec
mergeSort
(
l
:
int
list
)
=
match
l
with
(* If the list is of length 0 or 1, then it is already sorted *)
|
([]
|
[
_
])
->
l
...
...
This diff is collapsed.
Click to expand it.
funclang-taddeus/series4/ass9.ml
+
57
−
23
View file @
d740046e
open
List
(* A
N
ode has a key, value and list of children *)
(* A
trie n
ode has a key,
a
value and
a
list of children *)
type
(
'
a
,
'
b
)
trie
=
Empty
|
Node
of
'
a
list
*
'
b
*
(
'
a
,
'
b
)
trie
list
let
rec
start
s_
with
l
s
=
(
length
s
)
<=
(
length
l
)
&&
match
s
with
(* Helper function, checks if a list l
start
with
a sublist
s
*)
let
rec
starts_with
l
s
=
match
s
with
|
[]
->
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 *)
let
rec
insert
trie
key
value
=
match
trie
with
(* TODO: this doesn't work completely yet *)
let
rec
insert
trie
key
value
=
match
trie
with
|
Empty
->
Node
(
key
,
value
,
[]
)
(* Root *)
|
Node
(
k
,
v
,
children
)
->
if
k
=
key
then
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
* the node's key *)
let
rec
walk_nodes
=
function
|
[]
->
Empty
|
node
::
tail
->
match
node
with
|
node
::
tail
->
match
node
with
|
Empty
->
Empty
|
Node
(
k
,
_
,
_
)
->
if
starts_with
key
k
then
...
...
@@ -45,13 +47,52 @@ let rec insert trie key value =
let
move
,
siblings
=
partition
matches_key
children
in
Node
(
k
,
v
,
(
Node
(
key
,
value
,
move
))
::
siblings
)
|
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
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 *)
let
rec
lookup
trie
key
=
match
trie
with
let
rec
lookup
trie
key
=
match
trie
with
|
Empty
->
None
(* Trie is empty, so no result *)
|
Node
(
k
,
value
,
children
)
->
if
k
=
key
then
...
...
@@ -70,11 +111,9 @@ let rec lookup trie key =
else
(* Not found *)
None
;;
(* Find all (key, value) pairs whose key start with a given prefix *)
let
rec
matches
trie
key
=
match
trie
with
let
rec
matches
trie
key
=
match
trie
with
|
Empty
->
[]
|
Node
(
k
,
value
,
children
)
->
let
rec
match_nodes
=
function
...
...
@@ -82,9 +121,4 @@ let rec matches trie key =
|
node
::
rest
->
(
matches
node
key
)
@
(
match_nodes
rest
)
in
(
if
starts_with
k
key
then
[(
k
,
value
)]
else
[]
)
@
match_nodes
children
;;
(*let a = Node ([1;2;3], "a", []);;
let b = Node ([1;3], "b", [a]);;
let c = Node ([3;4], "c", [b]);;*)
@
match_nodes
children
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment