Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a Java program that asks the user to enter transaction details until the user chooses to stop. Stores those details into list nodes and
Write a Java program that asks the user to enter transaction details until the user chooses to stop. Stores those details into list nodes and chains the nodes together into a Circular Doubly Linked List. Your list should store information about Customers' Transactions that contain three fields: customer name (string), customer number (int), and transaction description (string). Instead of simply asking the user if they want to add a new node(details), your main program should offer the user a menu of options: ooooooAddanodeattheendAddanodeatthebeginningAddanodeatspecifiedindexPrintouttheentirelistRemoveanodeatspecifiedindexGetsizeoflist You are required to submit the following: i. Write the pseudo-code or draw flow charts of the methods. (Word document) ii. Implement the Java classes and submit the source code (.java files). Include appropriate comments where necessary. iii. Provide screen shot of the input and output of the applications. (Word document)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started