Looping through all values in a BST to get value to use in another BST

  • Comp Sci
  • Thread starter softwareTurtle
  • Start date
  • Tags
    Value
In summary: Right() != null) { stack.pop(); } // return the index value return index; } }In summary, the algorithm iterates over all values in the BST and checks to see if the ngram is already present in the index. If it is not, it creates a new entry
  • #1
softwareTurtle
1
0
Homework Statement
Finish the implementation of buildIndex. You have access to the parameter BST<Path, Ngram[]> files, which contains the 5-grams of each file, as described above. The method should return a BST containing all 5-grams containing in all input files; the value associated with a 5-gram should be the list of files containing that 5-gram (in any order).
Note that the Ngram class already implements the Comparable<Ngram> interface, so you do not need to implement any extra code to be able to compare 5-grams. Also, BST.java is already implemented for you – you do not have to create your own binary search tree implementation.
Relevant Equations
for(ArrayList<Path> paths: paths) {
for(Ngram ngrams: files.keys()) {
index.put(ngrams, paths);
}
}
I have a Algorithms and data structure lab that I'm really struggling with. I do not understand how I should iterate over all values to create the new index.
Code:
    static BST<Ngram, ArrayList<Path>> buildIndex(BST<Path, Ngram[]> files) {
      BST<Ngram, ArrayList<Path>> index = new BST<Ngram, ArrayList<Path>>();
     
      return index;
    }
 
Physics news on Phys.org
  • #2
You can iterate over all the values in the BST by using a pre-order traversal. A pre-order traversal starts at the root node and visits each of the left subtree nodes before visiting the right subtree nodes. For each node, you can get the key (the Ngram) and the value (the ArrayList of Paths). You can then check if the Ngram is already present in the index BST. If it is not, you can create a new entry with the Ngram as the key and an empty ArrayList as the value. Otherwise, you can retrieve the existing ArrayList and add the Path from the files BST to it. Once you have iterated over all the nodes in the files BST, you will have a fully populated index BST. Here is some sample code that implements this algorithm:static BST<Ngram, ArrayList<Path>> buildIndex(BST<Path, Ngram[]> files) { BST<Ngram, ArrayList<Path>> index = new BST<Ngram, ArrayList<Path>>(); // perform a pre-order traversal of the files BST Stack<BSTNode<Path, Ngram[]>> stack = new Stack<BSTNode<Path, Ngram[]>>(); stack.push(files.getRoot()); while (!stack.isEmpty()) { BSTNode<Path, Ngram[]> node = stack.pop(); Path path = node.getKey(); Ngram[] ngrams = node.getValue(); for (Ngram ngram : ngrams) { // check if the ngram already exists in the index ArrayList<Path> paths = index.get(ngram); if (paths == null) { // ngram does not exist, create a new entry paths = new ArrayList<Path>(); index.put(ngram, paths); } // add the path to the list of paths paths.add(path); } // push the left child onto the stack if (node.getLeft() != null) { stack.push(node.getLeft()); }
 

1. How do I loop through all values in a BST?

To loop through all values in a BST, you can use a recursive function that traverses the tree in either an in-order, pre-order, or post-order manner. This will allow you to access each node and its value as you traverse through the tree.

2. Can I use a for loop to iterate through a BST?

No, a for loop is not suitable for iterating through a BST as it does not follow a linear structure. Instead, you will need to use a recursive function or an iterative approach using a stack or queue data structure.

3. What is the best way to use values from one BST in another BST?

The best way to use values from one BST in another BST is to first loop through the first BST and store the values in an array. Then, you can use that array to insert the values into the second BST in the appropriate order.

4. How do I know when I have reached the end of a BST while looping through it?

You can check if a node is null while traversing the BST. If a node is null, it means you have reached the end of the tree and can stop looping through it.

5. Can I use a while loop to iterate through a BST?

Yes, you can use a while loop to iterate through a BST by keeping track of the current node and using its left and right child nodes to traverse through the tree. However, this approach can be more complex and error-prone compared to using a recursive function or an iterative approach with a stack or queue data structure.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
5
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
6
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Programming and Computer Science
Replies
5
Views
2K
  • Programming and Computer Science
Replies
3
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
5
Views
3K
  • Programming and Computer Science
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
11
Views
3K
  • Programming and Computer Science
Replies
16
Views
1K
Back
Top