| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 319 人关注过本帖
标题:谁帮我看看这个程序啊!!!!!(选择法排序)
取消只看楼主 加入收藏
hhp_cr9
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2011-3-8
结帖率:66.67%
收藏
已结贴  问题点数:20 回复次数:0 
谁帮我看看这个程序啊!!!!!(选择法排序)
#include<stdio.h>
void select_sort(int list[],int n);

int main()
{
    int i;
    int list [10];
    printf("please enter the array >");
    for(i=0;i<10;i++)
    {
        scanf("%d",&list[i]);
    }
    select_sort(list,n);
    for(i=0;i<10;i++)
    {
        printf("%d",list[i]);
    }
}
void select_sort(int list[],int n)
{
    int get_min_range(int list[],int first,int last);
    int fill;
    int temp,index_of_min;
    for(fill=0;fill<n-1;++fill)
    {
        index_of_min=get_min_range(list,fill,n-1);
        if(fill!=index_of_min)
        {
            temp=list[index_of_min];
            list[index_of_min]=list[fill];
            list[fill]=temp;
        }
    }
}

写出get_min_range(list,fill,n-1)函数

[ 本帖最后由 hhp_cr9 于 2011-3-17 16:27 编辑 ]
搜索更多相关主题的帖子: include please 
2011-03-17 15:47
快速回复:谁帮我看看这个程序啊!!!!!(选择法排序)
数据加载中...
 
   



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

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