From 054da6e14ad8961124a244ed50067a0114fffc86 Mon Sep 17 00:00:00 2001 From: pmkfqw2gu <2511089200@qq.com> Date: Thu, 17 Feb 2022 21:05:03 +0800 Subject: [PATCH] =?UTF-8?q?Delete=20'=E5=86=92=E6=B3=A1=E6=B3=952.cpp'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 冒泡法2.cpp | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 冒泡法2.cpp diff --git a/冒泡法2.cpp b/冒泡法2.cpp deleted file mode 100644 index 95ffd3a..0000000 --- a/冒泡法2.cpp +++ /dev/null @@ -1,16 +0,0 @@ -void bubble(int *b,int n) -{ - int i,j,temp; - for(i=0;ib[j+1]) - { - temp = b[j]; - b[j] = b[j+1]; - b[j+1]=temp; - } - } - } -}