发布时间:2013-07-08 19:48:43
数据结构中所讲解的集中排序如下: 直接插入排序实现如下: //1、直接插入排序#include<iostream>using namespace std;#define MAXSIZE 20void InsertSort(int r[],int n){ int i,j; &nb.........【阅读全文】
发布时间:2013-07-07 18:14:20
#include<iostream>using namespace std;int main(){ int i;[1] for(i=0;i<3;i++) {[2] cout<<i; .........【阅读全文】
发布时间:2013-07-07 17:21:02
实现库函数strcpy #include<iostream> #include<assert.h>using namespace std;char*strcpy1(char*strDest,const char*strSrc){ assert((strDest!=NULL) && (strSrc!=NULL)); char*address=s.........【阅读全文】