| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1029 人关注过本帖
标题:排序算法(快速)
只看楼主 加入收藏
激情依旧
Rank: 1
等 级:新手上路
威 望:2
帖 子:524
专家分:0
注 册:2005-4-4
收藏
 问题点数:0 回复次数:0 
排序算法(快速)
#include<stdio.h>
void QuickSort(int a[],int low,int high){
int i=low,j=high;
int temp=a[low];
while(i<j)
  {
   while(j>i&&temp<=a[j])
    j--;
      if(j>i)
   {
    a[i]=a[j];
        i++;
   
   }
   while(j>i&&a[i]<temp)
    i++;
   if(j>i)
   {
         a[j]=a[i];
   j--;
   }
  }
  a[i]=temp;
  if(low<i) QuickSort(a,low,i-1);
  if(i<high)QuickSort(a,j+1,high);
}
main()
{ int a[100];
  int  high ,low,i,n;
  printf("请问你要输入几个数字:\n");
   scanf("%d",&n);
   printf("请输入数字:\n");
   for(i=0;i<n;i++)
      scanf("%d",&a[i]);
  low=0;
  high=n-1;
  QuickSort(a,low,high);
  printf("排序后的:\n");
  for( i=0;i<n;i++)
   printf("%d\t",a[i]);
}

图片附件: 游客没有浏览图片的权限,请 登录注册

搜索更多相关主题的帖子: 算法 
2005-04-14 07:38
快速回复:排序算法(快速)
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.026530 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved