Description

Your company has been researching ways to improve the efficiency the mobile devices that it produces.

Your group is tasked with finding a way to reduce media retrieval time from a playlist that is in alphabetical order.

Your Algorithm Group has recently been reviewing the divide-and-conquer paradigm and has decided to test a divide and conquer approach.

Assignment Part 1 In C++, code a search algorithm that searches a list of strings for a particular song.

The searching algorithm will have two inputs: the playlist, which is a string array that contains a list of songs in alphabetical order; and a particular song, which is a string.

If the song is found in the list, the algorithm will return the index of the song, and it will return -1 otherwise.

This searching algorithm will employ a divide-and-conquer approach similar to that in binary search, but with a slight variation. In binary search, a list is split in 2 sublists during each step; however, for your assignment, you will build and algorithm that splits the list into 3 sublists during each step.

Part 2 What is the time complexity (in Big-O notation) of your algorithm with respect to the size of the playlist? How does this time complexity compare to the time complexity of binary search (in terms of Big-O)?

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.