C语言psort函数 c语言puts函数

C语言问题SORT函数楼上两位好像都有问题 , 这个函数传的是数组首地址,所以不需要
返回值

for循环
是需要
大括号
的 。
改了一下:
void
sort(int
array[],int
n)
{
int
i,j,k,temp;
for(i=0;in-1;i++)
{k=i;
for(j=k+1;jn;j++)
if(array[k]array[j])
k=j;
temp=array[i];
array[i]=array[k];
array[k]=temp;
【C语言psort函数 c语言puts函数】}
}
C语言sort函数如何使用#includestdio.h
#includestdlib.h
int comp(const void*a,const void*b)//用来做比较的函数 。
{
return *(int*)a-*(int*)b;
}
int main()
{
int a[10] = {2,4,1,5,5,3,7,4,1,5};//乱序的数组 。
int i;
qsort(a,10,sizeof(int),comp);//调用qsort排序
for(i=0;i10;i++)//输出排序后的数组
{
printf("%d ",a[i]);
}
return 0;
}
c语言和c++中,对于sort函数的使用,不同 。c语言中没有预置的sort函数,如果在c语言中,要调用sort函数,就需要自定义一个用于排序的函数 , 或者使用c语言自有的qsort函数,其头文件为stdlib.h 。
c语言中sort的用法详解c语言的学习很多是比较复杂的,那么c语言中sort的用法的用法你知道吗?下面我就跟你们详细介绍下c语言中sort的用法的用法,希望对你们有用 。
c语言中sort的用法的用法
sort是STL中提供的算法,头文件为#includealgorithm以及using namespace std; 函数原型如下:
?
1
2
3
4
5
template class RandomAccessIterator
void sort ( RandomAccessIterator first, RandomAccessIterator last );
template class RandomAccessIterator, class Compare
void sort ( RandomAccessIterator first, RandomAccessIterator last, Compare comp );
使用第一个版本是对[first,last)进行升序排序 , 默认操作符为"",第二个版本使用comp函数进行排序控制,comp包含两个在[first,last)中对应的值,如果使用""则为升序排序 , 如果使用""则为降序排序,分别对int、float、char以及结构体排序例子如下:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#includestdio.h
#includealgorithm
#includestring
using namespace std;
struct product{
char name[16];
float price;
};
int array_int[5]={4,1,2,5,3};
char array_char[5]={'a','c','b','e','d'};
double array_double[5]={1.2,2.3,5.2,4.6,3.5};
//结构比较函数(按照结构中的浮点数值进行排序)
bool compare_struct_float(const product a,const product b){
return a.priceb.price;
}
//结构比较函数(按照结构中的字符串进行排序)
bool compare_struct_str(const product a,const product b){
return string(a.name)string(b.name);
}
//打印函数
void print_int(const int* a,int length){
printf("升序排序后的int数组:\n");
for(int i=0; ilength-1; i++)
printf("%d ",a[i]);
printf("%d\n",a[length-1]);
}
void print_char(const char* a,int length){
printf("升序排序后的char数组:\n");

推荐阅读