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

📄 sort.h

📁 c语言开发方面的经典问题,包括源代码.c语言开发所要注意的问题,以及在嵌入式等各方面的应用
💻 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 + -