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
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
Get step-by-step solutions from verified subject matter experts
