2022年6月30日 星期四

bubble sort

 #include <stdio.h>

#include <stdlib.h>

#include <string.h>

//反轉字串,用一維陣列即可求解 

int main(int argc, char *argv[]) 

{

int  n[10];

int i,j;

for(i=0;i<10;i++)

{

scanf("%d",&n[i]);

}

for(i=0;i<10;i++)

{

for(j=0;j<10-i;j++)

{

if(n[j]>n[j+1])

{

  int temp =n[j];

  n[j]=n[j+1];

  n[j+1]=temp;

}

}

}

int x;

for(x=0;x<10;x++)

{

printf("%d ",n[x]);

}

return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...