python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to implement a C++ Trie with multiple variables
I need to implement a Trie data structure to store first name, last name and age.
The assignment says: "Once the path to the last name is established the first and last name and age of the person...

Joe
Votes: 0
Answers: 0
C++ Trie Data Structure implementation with multiple parameters
I need to create a Trie data structure to store first name, last name and age. I will later need to implement a search for records using last name, or first and last names.
I know how to create a Trie...

Joe
Votes: 0
Answers: 1
How can I build an immutable tree datastructure in Scala?
I am attempting to construct an immutable Trie defined as such:
case class Trie(children: Map[Char, Trie] = Map.empty[Char, Trie], value: Option[String] = None)
With the following extension methods:
...
jtanza
Votes: 0
Answers: 1
How can I add a linkedlist to a trie leaf?
I have a dictionary project in java.it adds words to a trie tree and then I need to add a linkedlist to end of each word I entered that saves meanings. I have made two kind of nodes like bellow for th...

user15819643
Votes: 0
Answers: 2