?? 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 + -