Skip to content
Snippets Groups Projects
Commit 8c6af25f authored by Michael Lee's avatar Michael Lee
Browse files

Move HashTrie* to new package to match p2

parent 706d120f
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ import java.util.List;
import cse332.interfaces.worklists.PriorityWorkList;
import cse332.types.BitString;
import datastructures.HashTrieMap;
import datastructures.dictionaries.HashTrieMap;
import datastructures.worklists.MinFourHeap;
/**
......
......@@ -4,6 +4,7 @@ import cse332.exceptions.NotYetImplementedException;
import cse332.interfaces.worklists.FIFOWorkList;
import cse332.interfaces.worklists.FixedSizeFIFOWorkList;
import cse332.types.ByteString;
import datastructures.dictionaries.HashTrieMap;
public class SuffixTrie extends HashTrieMap<Byte, ByteString, Boolean> {
protected static final Byte TERMINATOR = null;
......
package datastructures;
package datastructures.dictionaries;
import java.util.HashMap;
import java.util.Iterator;
......
package datastructures;
package datastructures.dictionaries;
import cse332.exceptions.NotYetImplementedException;
import cse332.interfaces.trie.BString;
import cse332.interfaces.trie.TrieSet;
import datastructures.HashTrieMap;
public class HashTrieSet<A, E extends BString<A>> extends TrieSet<A, E> {
/* Note: You should not be adding any methods to this class...you only need to implement
......
......@@ -4,8 +4,8 @@ package main;
import cse332.interfaces.trie.TrieMap;
import cse332.interfaces.trie.TrieSet;
import cse332.types.*;
import datastructures.HashTrieMap;
import datastructures.HashTrieSet;
import datastructures.dictionaries.HashTrieMap;
import datastructures.dictionaries.HashTrieSet;
public class TrieTest {
public static void main(String[] args) {
......
package tests.gitlab.duedate;
import cse332.types.AlphabeticString;
import datastructures.HashTrieMap;
import datastructures.dictionaries.HashTrieMap;
import tests.TestsUtility;
import java.util.HashMap;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment