Ex1) Given the file arrayImpOfStack.java then write a main method to read a sequence of numbers and using the stack operation print them in reverse order. Ex2) Given the file pointerImOfStack.java then write a main method to read a decimal number and print its equivalent binary number. Ex3) Given the file arrayImpOfStack.java then write a main method: - declaring two stack objects S1, S2; - reads a sequence of numbers; store the even ones in the stack S1, and store the odd ones in the stack S2. - print the even numbers followed by odd ones. Ex4) Given the file pointerImOfQueue.java then write a main method: to - add some elements into the queue, - reverse the queue contents, (Hint use an array) - print the queue contents.
Ex1) Given the file arrayImpOfStack.java then write a main method to read a sequence of numbers and using the stack operation print them in reverse order.
Ex2) Given the file pointerImOfStack.java then write a main method to read a decimal number and print its equivalent binary number.
Ex3) Given the file arrayImpOfStack.java then write a main method:
- declaring two stack objects S1, S2;
- reads a sequence of numbers; store the even ones in the stack S1, and store the
odd ones in the stack S2.
- print the even numbers followed by odd ones.
Ex4) Given the file pointerImOfQueue.java then write a main method: to
- add some elements into the queue,
- reverse the queue contents, (Hint use an array)
- print the queue contents.
*************Solution using java*****************
Step by step
Solved in 8 steps with 4 images