Consider an array A comprising of the characters that form y
Consider an array A comprising of the characters that form your first name and last name, with no blank space in between. For example, if your first name is \"JOHN\" and last name is \"PETER\", then the array A is JOHNPETER. The sorted version of array A would be: EEHJNOPRT. Sort the array A formed with your first name and last name using \"Merge Sort\". Show all the steps of the divide and conquer strategy (i.e., the splits and the merging). Also, count the total number of comparisions during the merging step.
Solution
C Code:
