标题:自已写了一个冒泡算法程序,求改进
取消只看楼主
commandow
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2010-7-13
结帖率:100%
已结贴  问题点数:20 回复次数:1 
自已写了一个冒泡算法程序,求改进
void main()
{
    int i, j, length, temp, num;
    int a[100];
    i=0;
    num=0;
    printf("please enter the size of the input array:\n");

    scanf("%d", &num);

    printf("please enter the input array:\n");

    for(i=0; i< num; i++)
        scanf("%d", &a[i]);

    length=num;

    for(i=length-1; i> 0; i--)
    {
        for(j=0; j< i; j++)
        {
            if(a[j]>=a[j+1])
            {
                temp= a[j];
                a[j]= a[j+1];
                a[j+1]= temp;
            }        
        }
    }

    printf("the sorted array is:\n");

    for(i=0; i<length; i++)
    printf("%d ", a[i]);   
    scanf("%d", &i);
}
在输入数组数据的时候我得先把数组大小定死,感觉很不灵活,希望换种数据输入方式,比如按某个键就结束数组输入之类的,欢迎大家多提建议
搜索更多相关主题的帖子: please 
2011-04-13 21:38
commandow
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2010-7-13
得分:0 
回复 3楼 帅的让人抽
好想法!!
2011-04-13 22:24



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-336566-1-1.html




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

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