sort.h
来自「书名:C语言科学与艺术,以前交钱下载的」· C头文件 代码 · 共 26 行
H
26 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?