Question: Question: Products are identified by alphanumeric codes. Each code is stored as a string. We have three types of products: high priority, medium priority, and

Question:
Products are identified by alphanumeric codes. Each code is stored as a string. We have three types of products: high priority, medium priority, and low priority. Given an array of product codes, sort the array so that the highest priority products come at the beginning of the array, the medium priority products come in the middle, and the low priority products come at the end. Within a priority group, order does not matter. You are given a priority function which, given a product code, returns 1 for high, 2 for medium and 3 for low. This array may contain a large number of product codes, so do your best to minimize additional storage.
You are given this function for usage:
private int GetPriority(string productCode).
You dont need to implement this function.
Please Implement:
public void OrderProductsByPriority(string[] productCodes)
 Question: Products are identified by alphanumeric codes. Each code is stored

Products are identified by alphanumeric codes. Each code is stored as a string. We have three types of products: high priority, medium priority, and low priority. Given an array of product codes, sort the array so that the highest priority products come at the beginning of the array, the medium priority products come in the middle, and the low priority products come at the end. Within a priority group, order does not matter. You are given a priority function which, givena product code, returns 1 for high, 2 for medium and 3 for low. This array may contain a large number of product codes, so do your best to minimize additional storage. You are given this function for usage private int GetPriority(string productCode). You don't need to implement this function. Please Implement: public void OrderProductsByPriority(string[] productCodes)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!