Is there any math function in C library to calculate MEDIAN of 'n' numbers?
to get the median you can sort the array of numbers and take:
1) in case when number of items is odd - the number in the middle
2) in case when number of items is even - the average of two numbers in the middle
No, there is no median function in the standard C library.
No, there is no such function in the standard C library.
However, you can implement one (or surely find code online). An efficient O(n) algorithm for finding a median is called "selection algorithm" and is related to quicksort. Read all about it here.
To compute the median using the standard C library, use the standard library function qsort()
and then take the middle element. If the array is a
and has n
elements, then:
qsort(a, n, sizeof(a[0]), compare);
return a[n/2];
You have to write your own compare
function which will depend on the type of an array element. For details consult the man page for qsort
or look it up in the index of Kernighan and Ritchie.