📄 sort.h
字号:
/* * File: sort.h * ------------ * This file provides an interface to a simple procedure * for sorting an integer array into increasing order. */#ifndef _sort_h#define _sort_h/* * Function: SortIntegerArray * Usage: SortIntegerArray(array, n); * ---------------------------------- * This function sorts the first n elements in array into * increasing numerical order. In order to use this procedure, * you must declare the array in the calling program and pass * the effective number of elements as the parameter n. * In most cases, the array will have a larger allocated * size. */void SortIntegerArray(int array[], int n);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -