博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年8月8日

摘要: // 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 阅读全文

posted @ 2011-08-08 21:12 ChessYoung 阅读(170) 评论(0) 推荐(0)