- 博客(3)
- 收藏
- 关注
原创 分而治之算法——找最大值最小值
#include iostream>#include limits>using namespace std;template class T>bool MinMax(T w[], int n, T& Min, T& Max)...{ //寻找w[0:n-1]中的最小和最大值 //如果少于一个元素,则返回false //特殊情形:n if(n1) r
2008-01-31 11:23:00 802
原创 冒泡排序
#include iostream>#include limits>using namespace std;templateclass T>void Swap(T& a, T& b)...{ //两数交换 T temp = a; a = b; b = temp;}//一次冒泡template class T>void Bubble(T a[], in
2008-01-30 14:24:00 269
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人