摘要:
/***bubble Sort**/#define keyType int#include<stdio.h>//base bubble sort int bubbleSort(keyType array[],int n){keyType tmp;for(int i = 1;i <= n-1;i++){for(int j = 0;j < n-i;j++){if(array[j... 阅读全文
posted @ 2010-10-17 00:42 生无涯 阅读(183) 评论(0) 推荐(0)
浙公网安备 33010602011771号