progress with coding insert function

This commit is contained in:
2024-09-03 22:09:31 +01:00
parent f518ebb4b3
commit 88ec026921

View File

@@ -58,10 +58,9 @@ struct
else SEARCH_KEY_CONTAINS_TRIE_KEY else SEARCH_KEY_CONTAINS_TRIE_KEY
else else
(* implicit: keyPos > String.size searchKey *) (* implicit: keyPos > String.size searchKey *)
if keyPos <= String.size trieKey then if keyPos <= String.size trieKey
TRIE_KEY_CONTAINS_SEARCH_KEY then TRIE_KEY_CONTAINS_SEARCH_KEY
else else NO_SEARCH_MATCH
NO_SEARCH_MATCH
fun isFoundNode node = fun isFoundNode node =
case node of case node of
@@ -157,20 +156,59 @@ struct
else INSERT_KEY_CONTAINS_TRIE_KEY else INSERT_KEY_CONTAINS_TRIE_KEY
else else
(* implicit: keyPos > String.size insertKey *) (* implicit: keyPos > String.size insertKey *)
if keyPos <= String.size trieKey then if keyPos <= String.size trieKey
TRIE_KEY_CONTAINS_INSERT_KEY then TRIE_KEY_CONTAINS_INSERT_KEY
else NO_INSERT_MATCH
datatype insert_bin_search_result =
INSERT_NEW_CHILD of int
| FOUND_INSERT_POS of int
| APPEND_NEW_CHILD
fun linearSearch (findChr, keyPos, idx, children) =
if idx = Vector.length children then
APPEND_NEW_CHILD
else else
NO_INSERT_MATCH let
val curStr = Vector.sub (children, idx)
val curChr = String.sub (curStr, keyPos)
in
if curChr > findChr then INSERT_NEW_CHILD idx
else linearSearch (findChr, keyPos, idx + 1, children)
end
fun helpInsertBinSearch (findChr, keyPos, children, low, high) =
let
val mid = low + ((high - low) div 2)
in
if high >= low then
let
val midStr = Vector.sub (children, mid)
val midChr = String.sub (midStr, keyPos)
in
if midChr = findChr then
FOUND_INSERT_POS mid
else if midChr < findChr then
helpInsertBinSearch (findChr, keyPos, children, mid + 1, high)
else
helpInsertBinSearch (findChr, keyPos, children, low, mid - 1)
end
else
linearSearch (findChr, keyPos, mid, children)
end
fun insertBinSearch (findChr, keyPos, children) =
helpInsertBinSearch
(findChr, keyPos, children, 0, Vector.length children - 1)
(* (*
* todo: * todo:
* Code another function for binary search; this time for insert. * Complete code for CHILDREN and FOUND_WITH_CHILDREN cases in insert function.
* The difference between findBinSearch and insertBinSearch * The start will be similar to the exists function,
* should be that, while findBinSearch returns NONE if the value is not found, * with binary search possibly followed by a string matching comparison.
* insertBinSearch should return the appropriate index to insert at * No string matching comparison is needed if the current char is not found
* if the value is not found. * in the binary search stage, however;
* The main insert function can then create new key/children vectors, * instead, we will insert a new element into the array when that happens.
* containing the insertKey and FOUND at the appropriate index.
*) *)
fun insert (insKey, keyPos, trie) = fun insert (insKey, keyPos, trie) =