Sort the Array by frequency. Help me how this works! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Sort the Array by frequency. Help me how this works!

https://www.geeksforgeeks.org/sort-array-according-order-defined-another-array/ I know C and am trying to write the program(c++) into C please clarify the function of mycomp and mycomp2 in the above program if you have any algo able to implement in c to sort by frequency please share

31st Jul 2020, 3:32 AM
Tom
Tom - avatar
1 Answer
+ 2
Naive approach Use three loops First use to change the index of current element Second search the above element from 0 to n-1 Third approach search if the current element is present before current index Don't print the frequency Efficient way Use hash map to store the frequency
31st Jul 2020, 4:09 AM
Aayush $aini
Aayush $aini - avatar