Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C Programma. http://eecs.wsu.edu/~aofallon/cpts122/progassignments/music.csv In this assignment you will complete the Digital Music Manager that you started in PA 2. You must implement the following features:

C Programma.

http://eecs.wsu.edu/~aofallon/cpts122/progassignments/music.csv

In this assignment you will complete the Digital Music Manager that you started in PA 2. You must implement the following features:

(4) insert

(5) delete

(7) sort

(10) shuffle

What must insert do?

The insert command must prompt the user for the details of a new record. The prompt must request the artist name, album title, song title, genre, song length, number of times played, and rating. The new record must be inserted at the front of the list.

What must delete do?

The delete command must prompt the user for a song title, and remove the matching record from the list. If the song title does not exist, then the list remains unchanged.

What must sort do?

The sort command must prompt the user for 4 different methods to sort the records in the list. These include:

Sort based on artist (A-Z)

Sort based on album title (A-Z)

Sort based on rating (1-5)

Sort based on times played (largest-smallest)

Once a sort method is selected by the user, the sort must be performed on the records in the list. Consider using bubble sort, insertion sort, or selection sort.

What must shuffle do?

The shuffle command must provide a random order in which the songs are played. This command must not modify the links in the list. It must just specify the order in which songs are played, based on the position of the song in the list. For example, lets say we have a list with 5 songs at positions 1 5 in the list, shuffle must generate an order 1 5 in which the songs are played. An order 2, 5, 3, 1, 4 would require that the second song in the list is played first, the fifth song in the list is played second, the third song in the list is played third, the first song in the list is played fourth, and the fourth song in the list is played fifth. The songs are accessed by traversing the list both forwards and backwards to satisfy the order. Hence, the need for a doubly linked list!

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