Using the knowledge in computational language in JAVA it is possible to write a code that organizes the values in descending order according to the division made.
ArrayStackADT.java
package L4.num1;
public interface ArrayStackADT<T>
{
void initializeStack();
boolean isEmptyStack();
boolean isFullStack();
void push(T item) throws StackOverflowException;
T peek() throws StackUnderflowException;
void pop() throws StackUnderflowException ;
}
StackOverflowException.java
package L4.num1;
public class StackOverflowException extends StackException
{
public StackOverflowException()
{
super("Stack Overflow");
}
public StackOverflowException(String message)
{
super(message);
}
}
StackException.java
package L4.num1;
public class StackException extends RuntimeException
{
public StackException(String message)
{
super(message);
}
}
StackUnderflowException.java
package L4.num1;
public class StackUnderflowException extends StackException
{
public StackUnderflowException()
{
super("Stack Underflow");
}
public StackUnderflowException(String message)
{
super(message);
}
}
See more about JAVA at brainly.com/question/12978370
#SPJ1