帶flag標準位的冒泡排序

#include<stdio.h> #define SIZE 8 void maopao(); int main(void) { int a[SIZE] = {50,36,66,76,95,12,25,36}; maopao(a); return 0; } void maopao(int b[]) { int i,j,tmp,k,flag; for(i=1
相關文章
相關標籤/搜索