From b85561dbe8db70bebab795b19f20c1ecdfc735d8 Mon Sep 17 00:00:00 2001 From: pzs93xi8q <2927226454@qq.com> Date: Thu, 17 Feb 2022 18:44:29 +0800 Subject: [PATCH] =?UTF-8?q?Delete=20'=E5=86=92=E6=B3=A1=E6=B3=953.cpp'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 冒泡法3.cpp | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 冒泡法3.cpp diff --git a/冒泡法3.cpp b/冒泡法3.cpp deleted file mode 100644 index 4aa1e16..0000000 --- a/冒泡法3.cpp +++ /dev/null @@ -1,19 +0,0 @@ -void choise(int *a,int n) -{ - int i,j,min,temp; - for(i=0;ia[j]) - min=j; /*��k����ָ����СԪ��*/ - } - if(i!=min) /*��k!=i�DzŽ���������a[i]��Ϊ��С*/ - { - temp=a[i]; - a[i]=a[min]; - a[min]=temp; - } - } -}