Skip to content
Advertisement

I need help Returning a string representation of my circular queue

I am trying to returns a string representation of my circular queue heres what I have so far. (Im not allowed to use/import other libraries in my code)

JavaScript

My public String toString( ) doesn’t return the right numbers on my test driver. I think it has something to do with it not circling the array.

JavaScript

And my driver:

JavaScript

Help would be appreciated

Advertisement

Answer

Here is the body of method toString() that returns the correct result.
(Notes after the code.)

JavaScript

Since the queue is circular, the start of the queue starts at front and extends to rear.

If rear is equal to front, that means that the queue contains only a single element.

If rear is greater that front, that means the the queue is not full, i.e. less than ten elements have been added to the queue.

If rear is less than front, it means that myArray is full, i.e. contains ten elements, and so you need to print all the elements from front to the last element of myArray and then you need to print the first elements of myArray starting from the first element up to rear.

For example if myArray is as follows:

JavaScript

and front equals 5 and rear equals 4, then rear is less than front so the first for loop in the above code will append the values from 55 to 59 and the second for loop will append the values from 60 to 63.

Note that I only changed method toString. I did not change any of the other code in your question. When I ran your test cases, this was the last line of the output.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement