细思c语言之《c语言程序-创新互联
1.读写整数成都创新互联专注于香河企业网站建设,成都响应式网站建设,商城系统网站开发。香河网站建设公司,为香河等地区提供建站服务。全流程按需定制开发,专业设计,全程项目跟踪,成都创新互联专业和态度为您提供的服务2.隐式转换的情况3.有符号和无符号整数的陷阱4.类型定义的优点5.C99 指定数组初始化6.数组初始化原理7.exit函数8.递归的运用——快速排序
快速排序算法介绍分割元素的寻找方法之一
标题名称:细思c语言之《c语言程序-创新互联
URL分享:http://scyanting.com/article/dhispp.html
示例:
我的排序代码
#includeint split(int a[], int low, int high)
{int tmp = a[low];
a[low] = 0;
while (low != high)
{if (a[low] == 0)
{ while (low != high)
{ if (a[high]< tmp)
{a[low] = a[high];
a[high] = 0;
low++;
break;
}
high--;
}
}
if (a[high] == 0)
{ while (low!=high)
{ if(a[low]>tmp)
{a[high] = a[low];
a[low] = 0;
high--;
break;
}
low++;
}
}
}
a[low] = tmp;
return low;
}
void quicksort(int a[], int low, int high)
{if (low >= high)
return;
int mid = split(a, low, high);
quicksort(a, low, mid - 1);
quicksort(a, mid + 1, high);
}
int main()
{int a[] = {9,16,47,82,4,66,12,3,25,51 };
quicksort(a, 0, 9);
for(int i=0;i<10;i++)
{printf("%d ", a[i]);
}
return 0;
}
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧
标题名称:细思c语言之《c语言程序-创新互联
URL分享:http://scyanting.com/article/dhispp.html