摘要: //直接选择排序#includevoid SelectionSort(int arr[],int len){ int i,j; int k,min; int temp; for(i=0;ii;j--) //从最后一个开始交换 { if(a... 阅读全文
posted @ 2014-05-02 11:47 乾卦 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 拷贝构造函数何时会被调用?1. 对象以值传递的方式传入函数参数2.对象以值传递的方式从函数返回3.对象需要通过另外一个对象进行初始化下面我们来看代码://#include //using namespace std;//template //T:队列的类型,char,int,double,包括自己... 阅读全文
posted @ 2014-05-02 10:36 乾卦 阅读(343) 评论(0) 推荐(0) 编辑