摘要:
char *strcpy(char *s1, const char *s2) 将字符串s2复制到字符串数组s1中,返回s1的值 char *strncpy(char *s1, const char *s2, size_t n) 将字符串s2中最多n个字符复制到字符串数组s1中,返回s1的值 char *strcat(char *s1, const char *s2) 将字符串s2添加到字符串s... 阅读全文
摘要:
编程题: 床前明月_ ,疑是地_霜,举头望_月,低头思故_。 A.光 上 明 乡 B.上 明 乡 光 C.乡 上 明 光 D.光 乡 上 明 请你编写一函数,随机扣掉每一句的一个字,然后生成3个错误选项,一个正确选项,选项的字必须是诗里所缺的字。请写出数据结构,算法。 code: #include #include #include using namespace std; const int... 阅读全文
摘要:
二分查找的代码. int bfind(int* a,int len,int val) { int m = len/2; int l = 0; int r = len; while(l!=m && r!= m) { if(a[m] > val) { r = m; m = (m+l)... 阅读全文