Skip to content

Instantly share code, notes, and snippets.

@VarunVats9
Last active January 31, 2023 12:36
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save VarunVats9/436d612b7ae68d940822c46f535daa43 to your computer and use it in GitHub Desktop.
Save VarunVats9/436d612b7ae68d940822c46f535daa43 to your computer and use it in GitHub Desktop.
public class AutoSuggestion {
private static final int TEN_THOUSAND_REQUESTS = 10000;
private static final int START = 0;
private static final String SEPARATOR = "--------------------------------------------------------------------" +
"---------------------------------------------------------------";
public static void main(String[] args) {
/*
* Two ways to do pre-compute.
* 1. One while you are adding the word and rating. (Good approach)
* 2. Trie already been made, then you run the pre-compute. (Bad approach)
*/
// BAD APPROACH.
{
System.out.println("************** BAD APPROACH : RUN PRE-COMPUTE ONCE TRIE HAS BEEN FORMED **************\n");
final long badApproachStart = System.currentTimeMillis();
// Setup the trie data structure.
Trie trie = new Trie();
trie.addWordWithRating("DOG", 9);
trie.addWordWithRating("DOLL", 11);
trie.addWordWithRating("DONT", 21);
trie.addWordWithRating("DART", 1);
trie.addWordWithRating("DIP", 5);
trie.addWordWithRating("DOLLAR", 51);
trie.addWordWithRating("DOGE", 15);
trie.addWordWithRating("OLD", 3);
// Query the trie, without doing any pre-compute.
{
System.out.println("WITHOUT pre-compute answer : " + trie.wordsWithGivenPrefixWithoutPreCompute("D"));
final long start = System.currentTimeMillis();
// Assume we have made the request 10,000 times.
for (int i = START; i <= TEN_THOUSAND_REQUESTS; i++) {
trie.wordsWithGivenPrefixWithoutPreCompute("D");
}
System.out.println("Time taken to run auto suggestion 10000 times WITHOUT pre-compute : [" + (System.currentTimeMillis() - start) + "] ms.\n");
}
// Let's pre-compute the auto suggestions beforehand.
trie.prePopulate();
// Query the trie, after pre-compute is done.
{
System.out.println("WITH pre-compute answer : " + trie.wordsWithGivenPrefixWithPreCompute("D"));
final long start = System.currentTimeMillis();
// Assume we have made the request 10,000 times.
for (int i = START; i <= TEN_THOUSAND_REQUESTS; i++) {
trie.wordsWithGivenPrefixWithPreCompute("D");
}
System.out.println("Time taken to run auto suggestion 10000 times WITH pre-compute : [" + (System.currentTimeMillis() - start) + "] ms.\n");
}
System.out.println("Time taken to run pre-compute BAD APPROACH : [" + (System.currentTimeMillis() - badApproachStart) + "] ms.\n");
}
System.out.println(SEPARATOR);
// GOOD APPROACH.
{
System.out.println("\n************** GOOD APPROACH : RUN PRE-COMPUTE WHILE TRIE IS BEING FORMED **************\n");
final long goodApproachStart = System.currentTimeMillis();
// Setup the trie data structure.
Trie trie = new Trie();
trie.addWordWithRatingAndDoPreCompute("DOG", 9);
trie.addWordWithRatingAndDoPreCompute("DOLL", 11);
trie.addWordWithRatingAndDoPreCompute("DONT", 21);
trie.addWordWithRatingAndDoPreCompute("DART", 1);
trie.addWordWithRatingAndDoPreCompute("DIP", 5);
trie.addWordWithRatingAndDoPreCompute("DOLLAR", 51);
trie.addWordWithRatingAndDoPreCompute("DOGE", 15);
trie.addWordWithRatingAndDoPreCompute("OLD", 3);
// Query the trie, without doing any pre-compute.
{
System.out.println("WITHOUT pre-compute answer : " + trie.wordsWithGivenPrefixWithoutPreCompute("D"));
final long start = System.currentTimeMillis();
// Assume we have made the request 10,000 times.
for (int i = START; i <= TEN_THOUSAND_REQUESTS; i++) {
trie.wordsWithGivenPrefixWithoutPreCompute("D");
}
System.out.println("Time taken to run auto suggestion 10000 times WITHOUT pre-compute : [" + (System.currentTimeMillis() - start) + "] ms.\n");
}
// Pre compute already been done beforehand, while adding the words.
// Query the trie, after pre-compute is done.
{
System.out.println("WITH pre-compute answer : " + trie.wordsWithGivenPrefixWithPreCompute("D"));
final long start = System.currentTimeMillis();
// Assume we have made the request 10,000 times.
for (int i = START; i <= TEN_THOUSAND_REQUESTS; i++) {
trie.wordsWithGivenPrefixWithPreCompute("D");
}
System.out.println("Time taken to run auto suggestion 10000 times WITH pre-compute : [" + (System.currentTimeMillis() - start) + "] ms.\n");
}
System.out.println("Time taken to run pre-compute GOOD APPROACH : [" + (System.currentTimeMillis() - goodApproachStart) + "] ms.");
}
}
}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.TreeMap;
import java.util.TreeSet;
import java.util.stream.Collectors;
public class Trie {
// Default rating value.
private static final int RATING_NOT_AVAILABLE = -1;
// Character assigned to the trie root.
private static final char ROOT_DATA = '$';
private static final String EMPTY_STRING = "";
// TreeSet to hold each entry of < rating and word > with the current prefix. (Used during pre-compute step.)
private TreeSet<Entry> treeSet;
// Children nodes
private Map<Character, Trie> children;
// Default rating to all the node.
private int rating = RATING_NOT_AVAILABLE;
// Each node data.
private Character data;
public Trie(final Character data) {
this.treeSet = new TreeSet<>((o1, o2) -> o2.rating.compareTo(o1.rating));
this.children = new HashMap<>();
this.data = data;
}
public Trie() {
this(ROOT_DATA);
}
public void addWordWithRating(final String word, final int rating) {
Trie node = this;
for (int i = 0; i < word.length(); i++) {
Character ch = word.charAt(i);
node.children.putIfAbsent(ch, new Trie(ch));
node = node.children.get(ch);
}
node.rating = rating;
}
public void addWordWithRatingAndDoPreCompute(final String word, final int rating) {
Trie node = this;
for (int i = 0; i < word.length(); i++) {
Character ch = word.charAt(i);
node.children.putIfAbsent(ch, new Trie(ch));
node = node.children.get(ch);
node.treeSet.add(new Entry(rating, word));
}
node.rating = rating;
}
public void prePopulate() {
preComputeDfsOnTrie(this, EMPTY_STRING);
}
private void preComputeDfsOnTrie(final Trie node, final String prefix) {
if (node.rating != -1) {
node.treeSet.add(new Entry(node.rating, prefix));
}
for (Map.Entry<Character, Trie> entry : node.children.entrySet()) {
preComputeDfsOnTrie(entry.getValue(), prefix + entry.getKey());
node.treeSet.addAll(entry.getValue().treeSet);
}
}
public List<String> wordsWithGivenPrefixWithPreCompute(final String prefix) {
Trie node = this;
final List<String> words = new ArrayList<>();
for (int i = 0; i < prefix.length(); i++) {
Character ch = prefix.charAt(i);
node = node.children.getOrDefault(ch, null);
if (Objects.isNull(node)) {
return Collections.emptyList();
}
}
for (Entry entry : node.treeSet) {
words.add(entry.word);
}
return words;
}
public List<String> wordsWithGivenPrefixWithoutPreCompute(final String prefix) {
Trie node = this;
final TreeSet<Entry> words = new TreeSet<>((o1, o2) -> o2.rating.compareTo(o1.rating));
for (int i = 0; i < prefix.length(); i++) {
Character ch = prefix.charAt(i);
node = node.children.getOrDefault(ch, null);
if (Objects.isNull(node)) {
return Collections.emptyList();
}
}
dfsOnTrie(words, prefix, node);
return words.stream()
.map(e -> e.word)
.collect(Collectors.toList());
}
private void dfsOnTrie(final TreeSet<Entry> words, final String prefix, final Trie node) {
if (node.rating != -1) {
words.add(new Entry(node.rating, prefix));
}
for (Map.Entry<Character, Trie> entry : node.children.entrySet()) {
dfsOnTrie(words, prefix + entry.getKey(), entry.getValue());
}
}
private void printTreeMap(final TreeMap<String, Integer> treeMap) {
for (Map.Entry<String, Integer> entry : treeMap.entrySet()) {
System.out.print("[" + entry.getKey() + ":" + entry.getValue() + "], ");
}
System.out.println();
}
private static class Entry {
private Integer rating;
private String word;
public Entry(final Integer rating, final String word) {
this.rating = rating;
this.word = word;
}
@Override
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
final Entry entry = (Entry)o;
return Objects.equals(rating, entry.rating) &&
Objects.equals(word, entry.word);
}
@Override
public int hashCode() {
return Objects.hash(rating, word);
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("Entry{");
sb.append("rating=").append(rating);
sb.append(", word='").append(word).append('\'');
sb.append('}');
return sb.toString();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment