toggle menu
KAHelpers
androidJvm
switch theme
search in API
dataStructuresAndAlgorithms
/
dev.funkymuse.datastructuresandalgorithms.trie
Package-level
declarations
Types
Functions
Types
Trie
Link copied to clipboard
class
Trie
<
Key
>
Trie
Node
Link copied to clipboard
class
TrieNode
<
Key
>
(
var
key
:
Key
?
,
var
parent
:
TrieNode
<
Key
>
?
)
Functions
collections
Link copied to clipboard
fun
Trie
<
Char
>
.
collections
(
prefix
:
String
)
:
List
<
String
>
contains
Link copied to clipboard
fun
Trie
<
Char
>
.
contains
(
string
:
String
)
:
Boolean
insert
Link copied to clipboard
fun
Trie
<
Char
>
.
insert
(
string
:
String
)
remove
Link copied to clipboard
fun
Trie
<
Char
>
.
remove
(
string
:
String
)