Implement a Trie Data Structure, and search() & insert() function: we need to implement both Class Trie and Class TrieNode Class Trie: import java.util.ArrayList; import java.util.List; public class Trie { private TrieNode root; /** * Constructor */…