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