select-sort

Introduction to Algorithms exerciese 2.2_2

Consider sorting n numbers stored in array A by first finding the smallest element of A and
exchanging it with the element in A[1]. Then find the second smallest element of A, and
exchange it with A[2]. Continue in this manner for the first n - 1 elements of A. Write
pseudocode for this algorithm, which is known as selection sort. What loop invariant does
this algorithm maintain? Why does it need to run for only the first n - 1 elements, rather than
for all n elements? Give the best-case and worst-case running times of selection sort in Θ-
notation.

#include <iostream>

#define Max 100

using std::cin;
using std::cout;
using std::endl;

int main()
{
    
int A[Max];
    
int num = 0;

    cout 
<< "input serveral intergers:" << endl;
    
    
for(int i=0; cin >> A[i]; ++i)
        
++num;
    
    
    
for(int j=0; j != num; ++j)  //    c1  num
    {                            //   num-1
        int min = A[j];          // c2 num-1
        for(int i=j+1; i != num; ++i)  // c3 num-j-1
            if(A[i] < min)             // c4 num-j-1
            {
                min 
= A[i];            //c5 num-j-1
                A[i] = A[j];           // c5 num-j-1
                A[j] = min;            // c5 num-j-1
            }

    }


    cout 
<< "the sorted sequence is:" << endl;
    
for(i=0; i != num; ++i)
        cout 
<< A[i] << " " ;
    cout 
<< endl;

    
return 0;
            

    

}

 worst case: n*(n-1)/2+n

 

objcopy -S -O binary obj/kernel/kernel entry bash test.sh obj/testcase/hello-str obj/testcase/max obj/testcase/to-lower-case obj/testcase/mov-c obj/testcase/hello obj/testcase/quick-sort obj/testcase/bubble-sort obj/testcase/quadratic-eq obj/testcase/hello-inline-asm obj/testcase/add-longlong obj/testcase/wanshu obj/testcase/leap-year obj/testcase/bit obj/testcase/gotbaha obj/testcase/struct obj/testcase/fib obj/testcase/print-FLOAT obj/testcase/select-sort obj/testcase/pascal obj/testcase/matrix-mul obj/testcase/integral obj/testcase/sum obj/testcase/shuixianhua obj/testcase/mul-longlong obj/testcase/if-else obj/testcase/string obj/testcase/sub-longlong obj/testcase/add obj/testcase/switch obj/testcase/matrix-mul-small obj/testcase/prime obj/testcase/movsx obj/testcase/min3 obj/testcase/fact [obj/testcase/hello-str](Command terminated by signal 6 2.90 s): FAIL! see hello-str-log.txt for more information [obj/testcase/max](0.00 s): PASS! [obj/testcase/to-lower-case](0.00 s): PASS! [obj/testcase/mov-c](0.00 s): PASS! [obj/testcase/hello](Command terminated by signal 6 2.63 s): FAIL! see hello-log.txt for more information [obj/testcase/quick-sort](Command terminated by signal 6 2.90 s): FAIL! see quick-sort-log.txt for more information [obj/testcase/bubble-sort](0.18 s): PASS! [obj/testcase/quadratic-eq](0.00 s): PASS! [obj/testcase/hello-inline-asm](Command terminated by signal 6 2.60 s): FAIL! see hello-inline-asm-log.txt for more information [obj/testcase/add-longlong](Command terminated by signal 6 2.90 s): FAIL! see add-longlong-log.txt for more information [obj/testcase/wanshu](1.08 s): PASS! [obj/testcase/leap-year](0.01 s): PASS! [obj/testcase/bit](0.00 s): PASS! [obj/testcase/gotbaha](0.04 s): PASS! [obj/testcase/struct](0.00 s): PASS! [obj/testcase/fib](0.00 s): PASS! [obj/testcase/print-FLOAT](Command terminated by signal 6 2.54 s): FAIL! see print-FLOAT-log.txt for more information [obj/testcase/select-sort](0.09 s): PASS! [obj/testcase/pascal](Command terminated by signal 6 2.51 s): FAIL! see pascal-log.txt for more information [obj/testcase/matrix-mul](Command terminated by signal 6 2.65 s): FAIL! see matrix-mul-log.txt for more information [obj/testcase/integral](0.00 s): PASS! [obj/testcase/sum](0.00 s): PASS! [obj/testcase/shuixianhua](0.06 s): PASS! [obj/testcase/mul-longlong](0.00 s): PASS! [obj/testcase/if-else](0.00 s): PASS! [obj/testcase/string](Command terminated by signal 6 3.06 s): FAIL! see string-log.txt for more information [obj/testcase/sub-longlong](Command terminated by signal 6 2.81 s): FAIL! see sub-longlong-log.txt for more information [obj/testcase/add](0.00 s): PASS! [obj/testcase/switch](0.00 s): PASS! [obj/testcase/matrix-mul-small](Command terminated by signal 6 2.88 s): FAIL! see matrix-mul-small-log.txt for more information [obj/testcase/prime](0.02 s): PASS! [obj/testcase/movsx](0.00 s): PASS! [obj/testcase/min3](Command terminated by signal 6 2.87 s): FAIL! see min3-log.txt for more information [obj/testcase/fact](0.00 s): PASS!
最新发布
09-28
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值