⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qsort.h

📁 基于内容的多媒体数据库检索算法
💻 H
字号:
/* * sort.h * * utility for sorting! * * By Philip Fu * * Sat Jan 13 19:34:22 EST 2001 * */#ifndef _SORT#define _SORT// 1) sort value in INCREASING order and output to sortList// 2) sortList must be initialized with " 0,1,...n-1 " before plug in as argumentvoid bubbleSortByIndex(int **sortList, double *value, int n);// Quick sort D[] and the corresponding comp[] in ascending order of// values of comp[].void q_sort(int *D, double *comp, int low,int high, int size);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -