posted @ 2011-08-08 21:12 ChessYoung 阅读(149) 评论(0) 推荐(0) 编辑
摘要:
// Sort.cpp : 排序算法测试模板//#include "stdafx.h"#include <iostream>using namespace std;const int N = 10;void InsertSort(int *a, int len);void ShellSort(int *a, int len);void BubbleSort(int *a, int len);void QuickSort(int *a, int low, int high);int _tmain(int argc, _TCHAR* argv[]){ int a[N 阅读全文