Objectives: The code for the different stack and queue operations in both implementations (array and linked list) are discussed in the lectures: and are written in the lectures power point. So the main object of this assignment is to give the student more practice to increase their understanding of the different implementation of these operations. - The students also are asked to write by themselves the main methods in the different exercises below; The Lab procedures: The following files must be distributed to the students in the Lab // it represents an array implementation of the stack. // it represents a Linked List implementation of the stack. pointerimofQueue.java // it represents a pointer implementation of the queue. arraylmpofStack.java pointerlmofStack.java Then the students by themselves are required to write the code for the following questions Ex1) Given the file arraylmpofStack.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 arraylmpOfStack.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. Note that Ex4) can be Solved using a stack instead of the array

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Objectives:
The code for the different stack and queue operations in both implementations (array and linked list) are
discussed in the lectures: and are written in the lectures power point. So the main object of this
assignment is to give the student more practice to increase their understanding of the different
implementation of these operations.
- The students also are asked to write by themselves the main methods in the different exercises below;
The Lab procedures:
The following files must be distributed to the students in the Lab
// it represents an array implementation of the stack.
// it represents a Linked List implementation of the stack.
arraylmpofStack.java
pointerlmofStack.java
pointerlmofQueue.java // it represents a pointer implementation of the queue.
Then the students by themselves are required to write the code for the following questions
Ex1) Given the file arraylmpofStack.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 arraylmpOfStack.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.
Note that Ex4) can be Solved using a stack instead of the array
Transcribed Image Text:Objectives: The code for the different stack and queue operations in both implementations (array and linked list) are discussed in the lectures: and are written in the lectures power point. So the main object of this assignment is to give the student more practice to increase their understanding of the different implementation of these operations. - The students also are asked to write by themselves the main methods in the different exercises below; The Lab procedures: The following files must be distributed to the students in the Lab // it represents an array implementation of the stack. // it represents a Linked List implementation of the stack. arraylmpofStack.java pointerlmofStack.java pointerlmofQueue.java // it represents a pointer implementation of the queue. Then the students by themselves are required to write the code for the following questions Ex1) Given the file arraylmpofStack.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 arraylmpOfStack.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. Note that Ex4) can be Solved using a stack instead of the array
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
Stack
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education