public class TSTAutocomplete extends Object
TernaryTreeNode| Modifier and Type | Method and Description | 
|---|---|
| void | balancedTree(Object[] tokens,
            Object[] vals,
            int lo,
            int hi,
            TernaryTreeNode root)Inserting keys in TST in the order middle,small,big (lexicographic measure)
 recursively creates a balanced tree which reduces insertion and search
 times significantly. | 
| TernaryTreeNode | insert(TernaryTreeNode currentNode,
      CharSequence s,
      Object val,
      int x)Inserts a key in TST creating a series of Binary Search Trees at each node. | 
| ArrayList<TernaryTreeNode> | prefixCompletion(TernaryTreeNode root,
                CharSequence s,
                int x)Auto-completes a given prefix query using Depth-First Search with the end
 of prefix as source node each time finding a new leaf to get a complete key
 to be added in the suggest list. | 
public void balancedTree(Object[] tokens, Object[] vals, int lo, int hi, TernaryTreeNode root)
tokens - Sorted list of keys to be inserted in TST.lo - stores the lower index of current list.hi - stores the higher index of current list.root - a reference object to root of TST.public TernaryTreeNode insert(TernaryTreeNode currentNode, CharSequence s, Object val, int x)
currentNode - a reference node where the insertion will take currently.s - key to be inserted in TST.x - index of character in key to be inserted currently.public ArrayList<TernaryTreeNode> prefixCompletion(TernaryTreeNode root, CharSequence s, int x)
root - a reference to root node of TST.s - prefix query to be auto-completed.x - index of current character to be searched while traversing through
          the prefix in TST.Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.