Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

public Location getNextLocation ( ) { if ( currentLocation = = null ) { currentLocation = locationsTree.getRoot ( ) ; } else { currentLocation =

public Location getNextLocation(){
if (currentLocation == null){
currentLocation = locationsTree.getRoot();
} else {
currentLocation = getNextInLevelOrder(locationsTree.getRoot(), currentLocation);
}
return currentLocation != null ? currentLocation.getData() : null;
}
public Location getPreviousLocation(){
if (currentLocation == null){
currentLocation = locationsTree.getRoot();
} else {
currentLocation = getPreviousInLevelOrder(locationsTree.getRoot(), currentLocation);
}
return currentLocation != null ? currentLocation.getData() : null;
}
private TNode getNextInLevelOrder(TNode root, TNode currentNode){
LinkedQueue> queue = new LinkedQueue<>();
boolean foundCurrent = false;
if (root == null){
return null;
}
queue.enqueue(root);
while (!queue.isEmpty()){
TNode node = queue.dequeue();
if (foundCurrent){
return node;
}
if (node == currentNode){
foundCurrent = true;
}
if (node.getLeft()!= null){
queue.enqueue(node.getLeft());
}
if (node.getRight()!= null){
queue.enqueue(node.getRight());
}
}
return null;
}
private TNode getPreviousInLevelOrder(TNode root, TNode currentNode){
LinkedQueue> queue = new LinkedQueue<>();
TNode previousNode = null;
if (root == null){
return null;
}
queue.enqueue(root);
while (!queue.isEmpty()){
TNode node = queue.dequeue();
if (node == currentNode){
return previousNode;
}
previousNode = node;
if (node.getLeft()!= null){
queue.enqueue(node.getLeft());
}
if (node.getRight()!= null){
queue.enqueue(node.getRight());
}
}
return null;
}
} there is a problem in navigation level by level and from left to right here

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Murach's SQL Server 2012 For Developers

Authors: Bryan Syverson, Joel Murach, Mike Murach

1st Edition

1890774693, 9781890774691

More Books

Students also viewed these Databases questions

Question

Write a Python program to check an input number is prime or not.

Answered: 1 week ago

Question

Summarize the impact of a termination on the employee.

Answered: 1 week ago