Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement the mentioned classes in java programming language and test your code: Class client that stores the following information about clients: ID, Name, address, mobile

Implement the mentioned classes in java programming language and test your code:

Class client that stores the following information about clients: ID, Name, address, mobile number, rating.

Class order that stores the following information about every order: Client (person who made the order), restaurant ID, Restaurant name, order description.

Class System that includes the following: linked list of all clients, queue of all orders.

Class ordersQueue: that includes the following: queue implementation over a doubly-linked-list, including all of the queue operations, the queue should take orders inside.

Notes:

There is composition between class order and client.

You need to modify class DLL to make the nodes and all basic operations take client object and not integers

DLLNode should include: client, and node pointers prev and next.

Use the same DLL class you modified, and create a list of clients in the main method in class system (the main class in your project)

Now, modify another copy of DLL, that contains orders objects, now you are ready to use this DLL to build a queue for orders

and please add all the getters and setters in the code and the methods ,and the test code

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

Students also viewed these Databases questions