note: nmemb must be non-zero */ float median(const float *a, size_t nmemb) { float copy[nmemb]; memcpy(copy, a, sizeof(a[0]) * nmemb); ...
確定! 回上一頁