上一页 1 ··· 18 19 20 21 22
  2013年10月25日
摘要: //String.h#ifndef STRING_H_H#define STRING_H_H#include #include using std::ostream;using std::istream;using std::cout;using std::cin;class String{ ... 阅读全文
posted @ 2013-10-25 12:49 aoun 阅读(599) 评论(2) 推荐(0)
摘要: #include #include using std::cout;using std::cin;using std::endl;#define SIZE 100bool Check(int *);//检验函数void BubbleSortUp(int *, int n);//冒泡排序-上升void BubbleSortDown(int *, int n);//冒泡排序下降void InsertSort(int *, int n);//直接插入排序int Partition(int *, int n);//快速排序void QuickSort(int *, int n);void ShellS 阅读全文
posted @ 2013-10-25 09:41 aoun 阅读(283) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22