I'm trying to implement a method that will store all words in a Trie data structure in a List.
This is my Node class:


class Node {
char c;
HashMap<Character, Node> children = new...