Vertical order traversal refactoring, added unit test (#3844)

Vertical order traversal refactoring, added test
This commit is contained in:
Albina Gimaletdinova 2023-01-13 16:56:15 +03:00 committed by GitHub
parent 5aa417b6ae
commit 3b6e3edbfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 64 additions and 23 deletions

View File

@ -22,23 +22,13 @@ in a tree from top to bottom and left to right, so for a tree :
*/ */
public class VerticalOrderTraversal { public class VerticalOrderTraversal {
public static void main(String[] args) {
BinaryTree tree = new BinaryTree();
tree.put(5);
tree.put(6);
tree.put(3);
tree.put(1);
tree.put(4);
BinaryTree.Node root = tree.getRoot();
ArrayList<Integer> ans = verticalTraversal(root);
for (int i : ans) {
System.out.print(i + " ");
}
}
/*Function that receives a root Node and prints the tree /*Function that receives a root Node and prints the tree
in Vertical Order.*/ in Vertical Order.*/
private static ArrayList<Integer> verticalTraversal(BinaryTree.Node root) { public static ArrayList<Integer> verticalTraversal(BinaryTree.Node root) {
if (root == null) {
return new ArrayList<>();
}
/*Queue to store the Nodes.*/ /*Queue to store the Nodes.*/
Queue<BinaryTree.Node> queue = new LinkedList<>(); Queue<BinaryTree.Node> queue = new LinkedList<>();
@ -84,8 +74,8 @@ public class VerticalOrderTraversal {
to the respective ArrayList present at that to the respective ArrayList present at that
index. */ index. */
map.get(index.peek()).add(queue.peek().data); map.get(index.peek()).add(queue.peek().data);
max = (int) Math.max(max, index.peek()); max = Math.max(max, index.peek());
min = (int) Math.min(min, index.peek()); min = Math.min(min, index.peek());
/*The Node and its index are removed /*The Node and its index are removed
from their respective queues.*/ from their respective queues.*/
index.poll(); index.poll();
@ -96,9 +86,7 @@ public class VerticalOrderTraversal {
vertical column that is added in ans ArrayList.*/ vertical column that is added in ans ArrayList.*/
ArrayList<Integer> ans = new ArrayList<>(); ArrayList<Integer> ans = new ArrayList<>();
for (int i = min; i <= max; i++) { for (int i = min; i <= max; i++) {
for (int j = 0; j < map.get(i).size(); j++) { ans.addAll(map.get(i));
ans.add(map.get(i).get(j));
}
} }
return ans; return ans;
} }

View File

@ -0,0 +1,53 @@
package com.thealgorithms.datastructures.trees;
import org.junit.jupiter.api.Test;
import java.util.Collections;
import java.util.List;
import static org.junit.jupiter.api.Assertions.assertEquals;
/**
* @author Albina Gimaletdinova on 13/01/2023
*/
public class VerticalOrderTraversalTest {
@Test
public void testRootNull() {
assertEquals(Collections.emptyList(), VerticalOrderTraversal.verticalTraversal(null));
}
@Test
public void testSingleNodeTree() {
final BinaryTree.Node root = TreeTestUtils.createTree(new Integer[]{50});
assertEquals(List.of(50), VerticalOrderTraversal.verticalTraversal(root));
}
/*
1
/ \
2 3
/\ /\
4 5 6 7
*/
@Test
public void testVerticalTraversalCompleteTree() {
final BinaryTree.Node root = TreeTestUtils.createTree(new Integer[]{1, 2, 3, 4, 5, 6, 7});
assertEquals(List.of(4, 2, 1, 5, 6, 3, 7), VerticalOrderTraversal.verticalTraversal(root));
}
/*
1
/ \
2 3
/\ /\
4 56 7
/ \
8 9
*/
@Test
public void testVerticalTraversalDifferentHeight() {
final BinaryTree.Node root = TreeTestUtils.createTree(
new Integer[]{1, 2, 3, 4, 5, 6, 7, null, null, 8, null, null, 9});
assertEquals(List.of(4, 2, 8, 1, 5, 6, 3, 9, 7), VerticalOrderTraversal.verticalTraversal(root));
}
}