1. <转>自:http://zhidao.baidu.com/question/173202165.html
  1.  
  2. 首先就是memcpy
    表头文件: #include <string.h>
    定义函数: void *memcpy(void *dest, const void *src, size_t n)
    函数说明: memcpy()用来拷贝src所指的内存内容前n个字节到dest所指的内存地址上。与strcpy()不同的是,memcpy()会完整的复制n个字节,不会因为遇到字符串结束'\0'而结束
    返回值: 返回指向dest的指针
    附加说明: 指针srcdest所指的内存区域不可重叠
    例如:
    你需要复制串str=“wangyucao1989”中的“yucao”,那么可以这么写:
    memcpy(newstr,str+4,5);
  3.  
  4. 除了memcpy之外,string还提供了strncpy函数:
    函数名称: strncpy
    函数原型: char *strncpy(char *dest, const char *srcint count)
    函数功能: 将字符串src中的count个字符拷贝到字符串dest中去
    函数返回: 指向dest的指针
    参数说明: dest-目的字符串,src-源字符串,count-拷贝的字符个数
    所属文档: <string.h>
  5.  
  6. 还是上面的例子,这个程序可以这样写:
    #include<stdio.h>
    #include<string.h>
    int main()
    {
    char str[] = "wangyucao1989";
  7.  
  8. char newstr[6];
    //memcpy(newstr,str+4,5);
    strncpy(newstr,str+4,5);
    newstr[5] = '\0';
    printf("%s\n",newstr);
    return 0;
    }
  9.  
  10. ========================================================
    位运算:
    运算方法有六种:
  11.  
  12. & 与运算
    | 或运算
    ^ 异或运算
    ~ 非运算(求补)
    >> 右移运算
    << 左移运算
  13.  
  14. 运用这些基本的运算,我们可以解决acm所需的各种运算,给Bit1,赋0,给他的值取反,还有好多段操作。如下:
  15.  
  16. 功能 | 示例 | 位运算
    -----------------+---------------------+--------------------
    去掉最后一位 | (101101->10110) | x >> 1
    在最后加一个0 | (101101->1011010) | x < < 1
    在最后加一个1 | (101101->1011011) | x < < 1+1
    把最后一位变成1 | (101100->101101) | x | 1
    把最后一位变成0 | (101101->101100) | x | 1-1
    最后一位取反 | (101101->101100) | x ^ 1
    把右数第k位变成1 | (101001->101101,k=3) | x | (1 < < (k-1))
    把右数第k位变成0 | (101101->101001,k=3) | x & ~ (1 < < (k-1))
    右数第k位取反 | (101001->101101,k=3) | x ^ (1 < < (k-1))
    取末三位 | (1101101->101) | x & 7
    取末k | (1101101->1101,k=5) | x & ((1 < < k)-1)
    取右数第k | (1101101->1,k=4) | x >> (k-1) & 1
    把末k位变成1 | (101001->101111,k=4) | x | (1 < < k-1)
    k位取反 | (101001->100110,k=4) | x ^ (1 < < k-1)
    把右边连续的1变成0 | (100101111->100100000) | x & (x+1)
    把右起第一个0变成1 | (100101111->100111111) | x | (x+1)
    把右边连续的0变成1 | (11011000->11011111) | x | (x-1)
    取右边连续的1 | (100101111->1111) | (x ^ (x+1)) >> 1
    去掉右起第一个1的左边 | (100101000->1000) | x & (x ^ (x-1))
    判断奇数 (x&1)==1
    判断偶数 (x&1)==0
    取右边第一个1所在位置 x&-x
  17.  
  18. ================================================================
    类型转换:
    函数名: abs 能: 求整数的绝对值
    法: int abs(int i);
    程序例:
    #include <stdio.h>
    #include <math.h>
  19.  
  20. int main(void)
    {
    int number = -1234;
  21.  
  22. printf("number: %d absolute value: %d\n", number, abs(number));
    return 0;
    }
    函数名: atof
    能: 把字符串转换成浮点数
    法: double atof(const char *nptr);
    程序例:
    #include <stdlib.h>
    #include <stdio.h>
  23.  
  24. int main(void)
    {
    float f;
    char *str = "12345.67";
  25.  
  26. f = atof(str);
    printf("string = %s float = %f\n", str, f);
    return 0;
    }
  27.  
  28. 函数名: atoi
    能: 把字符串转换成长整型数
    法: int atoi(const char *nptr);
    程序例:
    #include <stdlib.h>
    #include <stdio.h>
  29.  
  30. int main(void)
    {
    int n;
    char *str = "12345.67";
  31.  
  32. n = atoi(str);
    printf("string = %s integer = %d\n", str, n);
    return 0;
    }
  33.  
  34. 函数名: atol
    能: 把字符串转换成长整型数
    法: long atol(const char *nptr);
    程序例:
  35.  
  36. #include <stdlib.h>
    #include <stdio.h>
  37.  
  38. int main(void)
    {
    long l;
    char *str = "98765432";
  39.  
  40. l = atol(lstr);
    printf("string = %s integer = %ld\n", str, l);
    return(0);
    }
  41.  
  42. ===========================================================
    其他函数:
    函数名: bsearch
    能: 二分法搜索
    法: void *bsearch(const void *key, const void *base, size_t *nelem, size_t width, int(*fcmp)(const void *, const *));
    程序例:
  43.  
  44. #include <stdlib.h>
    #include <stdio.h>
  45.  
  46. #define NELEMS(arr) (sizeof(arr) / sizeof(arr[0]))
  47.  
  48. int numarray[] = {123, 145, 512, 627, 800, 933};
  49.  
  50. int numeric (const int *p1, const int *p2)
    {
    return(*p1 - *p2);
    }
  51.  
  52. int lookup(int key)
    {
    int *itemptr;
  53.  
  54. /* The cast of (int(*)(const void *,const void*))
    is needed to avoid a type mismatch error at
    compile time */
    itemptr = bsearch (&key, numarray, NELEMS(numarray),
    sizeof(int), (int(*)(const void *,const void *))numeric);
    return (itemptr != NULL);
    }
  55.  
  56. int main(void)
    {
    if (lookup(512))
    printf("512 is in the table.\n");
    else
    printf("512 isn't in the table.\n");
  57.  
  58. return 0;
    }
    函数名: fabs
    能: 返回浮点数的绝对值
    法: double fabs(double x);
    程序例:
  59.  
  60. #include <stdio.h>
    #include <math.h>
  61.  
  62. int main(void)
    {
    float number = -1234.0;
  63.  
  64. printf("number: %f absolute value: %f\n",
    number, fabs(number));
    return 0;
    }
  65.  
  66. 函数名: fcvt
    能: 把一个浮点数转换为字符串
    法: char *fcvt(double value, int ndigit, int *decpt, int *sign);
    程序例:
  67.  
  68. #include <stdlib.h>
    #include <stdio.h>
    #include <conio.h>
  69.  
  70. int main(void)
    {
    char *string;
    double value;
    int dec, sign;
    int ndig = 10;
  71.  
  72. clrscr();
    value = 9.876;
    string = ecvt(value, ndig, &dec, &sign);
    printf("string = %s dec = %d \
    sign = %d\n", string, dec, sign);
  73.  
  74. value = -123.45;
    ndig= 15;
    string = ecvt(value,ndig,&dec,&sign);
    printf("string = %s dec = %d sign = %d\n",
    string, dec, sign);
  75.  
  76. value = 0.6789e5; /* scientific
    notation */
    ndig = 5;
    string = ecvt(value,ndig,&dec,&sign);
    printf("string = %s dec = %d\
    sign = %d\n", string, dec, sign);
  77.  
  78. return 0;
    }
  79.  
  80. 函数名: gcvt
    能: 把浮点数转换成字符串
    法: char *gcvt(double value, int ndigit, char *buf);
    程序例:
  81.  
  82. #include <stdlib.h>
    #include <stdio.h>
  83.  
  84. int main(void)
    {
    char str[25];
    double num;
    int sig = 5; /* significant digits */
  85.  
  86. /* a regular number */
    num = 9.876;
    gcvt(num, sig, str);
    printf("string = %s\n", str);
  87.  
  88. /* a negative number */
    num = -123.4567;
    gcvt(num, sig, str);
    printf("string = %s\n", str);
  89.  
  90. /* scientific notation */
    num = 0.678e5;
    gcvt(num, sig, str);
    printf("string = %s\n", str);
  91.  
  92. return(0);
    }
    函数名: itoa
    能: 把一整数转换为字符串
    法: char *itoa(int value, char *string, int radix);
    程序例:
  93.  
  94. #include <stdlib.h>
    #include <stdio.h>
  95.  
  96. int main(void)
    {
    int number = 12345;
    char string[25];
  97.  
  98. itoa(number, string, 10);
    printf("integer = %d string = %s\n", number, string);
    return 0;
    }
  99.  
  100. 函数名: labs
    能: 取长整型绝对值
    法: long labs(long n);
    程序例:
  101.  
  102. #include <stdio.h>
    #include <math.h>
  103.  
  104. int main(void)
    {
    long result;
    long x = -12345678L;
  105.  
  106. result= labs(x);
    printf("number: %ld abs value: %ld\n",
    x, result);
  107.  
  108. return 0;
    }
    函数名: memcpy
    能: 从源source中拷贝n个字节到目标destin
    法: void *memcpy(void *destin, void *source, unsigned n);
    程序例:
  109.  
  110. #include <stdio.h>
    #include <string.h>
    int main(void)
    {
    char src[] = "******************************";
    char dest[] = "abcdefghijlkmnopqrstuvwxyz0123456709";
    char *ptr;
    printf("destination before memcpy: %s\n", dest);
    ptr = memcpy(dest, src, strlen(src));
    if (ptr)
    printf("destination after memcpy: %s\n", dest);
    else
    printf("memcpy failed\n");
    return 0;
    }
    函数名: memset
    能: 设置s中的所有字节为ch, s数组的大小由n给定
    法: void *memset(void *s, char ch, unsigned n);
    程序例:
  111.  
  112. #include <string.h>
    #include <stdio.h>
    #include <mem.h>
  113.  
  114. int main(void)
    {
    char buffer[] = "Hello world\n";
  115.  
  116. printf("Buffer before memset: %s\n", buffer);
    memset(buffer, '*', strlen(buffer) - 1);
    printf("Buffer after memset: %s\n", buffer);
    return 0;
    }
    函数名: pow 能: 指数函数(xy次方)
    法: double pow(double x, double y);
    程序例:
  117.  
  118. #include <math.h>
    #include <stdio.h>
  119.  
  120. int main(void)
    {
    double x = 2.0, y = 3.0;
  121.  
  122. printf("%lf raised to %lf is %lf\n", x, y, pow(x, y));
    return 0;
    }
  123.  
  124. 函数名: qsort
    能: 使用快速排序例程进行排序
    法: void qsort(void *base, int nelem, int width, int (*fcmp)());
    程序例:
  125.  
  126. #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
  127.  
  128. int sort_function( const void *a, const void *b);
  129.  
  130. char list[5][4] = { "cat", "car", "cab", "cap", "can" };
  131.  
  132. int main(void)
    {
    int x;
  133.  
  134. qsort((void *)list, 5, sizeof(list[0]), sort_function);
    for (x = 0; x < 5; x++)
    printf("%s\n", list[x]);
    return 0;
    }
  135.  
  136. int sort_function( const void *a, const void *b)
    {
    return( strcmp(a,b) );
    }
  137.  
  138. 函数名: sqrt
    能: 计算平方根
    法: double sqrt(double x);
    程序例:
  139.  
  140. #include <math.h>
    #include <stdio.h>
  141.  
  142. int main(void)
    {
    double x = 4.0, result;
  143.  
  144. result = sqrt(x);
    printf("The square root of %lf is %lf\n", x, result);
    return 0;
    }
    ========================================================
  145.  
  146. 字符串函数:
    函数名: sscanf
    能: 执行从字符串中的格式化输入
    法: int sscanf(char *string, char *format[,argument,...]);
    程序例:
  147.  
  148. #include <stdio.h>
    #include <conio.h>
  149.  
  150. int main(void)
    {
    char label[20];
    char name[20];
    int entries = 0;
    int loop, age;
    double salary;
  151.  
  152. struct Entry_struct
    {
    char name[20];
    int age;
    float salary;
    } entry[20];
  153.  
  154. /* Input a label as a string of characters restricting to 20 characters */
    printf("\n\nPlease enter a label for the chart: ");
    scanf("%20s", label);
    fflush(stdin); /* flush the input stream in case of bad input */
  155.  
  156. /* Input number of entries as an integer */
    printf("How many entries will there be? (less than 20) ");
    scanf("%d", &entries);
    fflush(stdin); /* flush the input stream in case of bad input */
  157.  
  158. /* input a name restricting input to only letters upper or lower case */
    for (loop=0;loop<entries;++loop)
    {
    printf("Entry %d\n", loop);
    printf(" Name : ");
    scanf("%[A-Za-z]", entry[loop].name);
    fflush(stdin); /* flush the input stream in case of bad input */
  159.  
  160. /* input an age as an integer */
    printf(" Age : ");
    scanf("%d", &entry[loop].age);
    fflush(stdin); /* flush the input stream in case of bad input */
  161.  
  162. /* input a salary as a float */
    printf(" Salary : ");
    scanf("%f", &entry[loop].salary);
    fflush(stdin); /* flush the input stream in case of bad input */
    }
  163.  
  164. /* Input a name, age and salary as a string, integer, and double */
    printf("\nPlease enter your name, age and salary\n");
    scanf("%20s %d %lf", name, &age, &salary);
  165.  
  166. /* Print out the data that was input */
    printf("\n\nTable %s\n",label);
    printf("Compiled by %s age %d $%15.2lf\n", name, age, salary);
    printf("-----------------------------------------------------\n");
    for (loop=0;loop<entries;++loop)
    printf("%4d | %-20s | %5d | %15.2lf\n",
    loop + 1,
    entry[loop].name,
    entry[loop].age,
    entry[loop].salary);
    printf("-----------------------------------------------------\n");
    return 0;
    }
    函数名: stpcpy
    能: 拷贝一个字符串到另一个
    法: char *stpcpy(char *destin, char *source);
    程序例:
  167.  
  168. #include <stdio.h>
    #include <string.h>
  169.  
  170. int main(void)
    {
    char string[10];
    char *str1 = "abcdefghi";
  171.  
  172. stpcpy(string, str1);
    printf("%s\n", string);
    return 0;
    }
  173.  
  174. 函数名: strcat
    能: 字符串拼接函数
    法: char *strcat(char *destin, char *source);
    程序例:
  175.  
  176. #include <string.h>
    #include <stdio.h>
  177.  
  178. int main(void)
    {
    char destination[25];
    char *blank = " ", *c = "C++", *Borland = "Borland";
  179.  
  180. strcpy(destination, Borland);
    strcat(destination, blank);
    strcat(destination, c);
  181.  
  182. printf("%s\n", destination);
    return 0;
    }
  183.  
  184. 函数名: strchr
    能: 在一个串中查找给定字符的第一个匹配之处\
    法: char *strchr(char *str, char c);
    程序例:
  185.  
  186. #include <string.h>
    #include <stdio.h>
  187.  
  188. int main(void)
    {
    char string[15];
    char *ptr, c = 'r';
  189.  
  190. strcpy(string, "This is a string");
    ptr = strchr(string, c);
    if (ptr)
    printf("The character %c is at position: %d\n", c, ptr-string);
    else
    printf("The character was not found\n");
    return 0;
    }
  191.  
  192. 函数名: strcmp
    能: 串比较
    法: int strcmp(char *str1, char *str2);
    程序例:
  193.  
  194. #include <string.h>
    #include <stdio.h>
  195.  
  196. int main(void)
    {
    char *buf1 = "aaa", *buf2 = "bbb", *buf3 = "ccc";
    int ptr;
  197.  
  198. ptr = strcmp(buf2, buf1);
    if (ptr > 0)
    printf("buffer 2 is greater than buffer 1\n");
    else
    printf("buffer 2 is less than buffer 1\n");
  199.  
  200. ptr = strcmp(buf2, buf3);
    if (ptr > 0)
    printf("buffer 2 is greater than buffer 3\n");
    else
    printf("buffer 2 is less than buffer 3\n");
  201.  
  202. return 0;
    }
    函数名: strcpy
    能: 串拷贝用 法: char *strcpy(char *str1, char *str2);
    程序例:
  203.  
  204. #include <stdio.h>
    #include <string.h>
  205.  
  206. int main(void)
    {
    char string[10];
    char *str1 = "abcdefghi";
  207.  
  208. strcpy(string, str1);
    printf("%s\n", string);
    return 0;
    }
  209.  
  210. 函数名: strrev
    能: 串倒转用 法: char *strrev(char *str);
    程序例:
  211.  
  212. #include <string.h>
    #include <stdio.h>
  213.  
  214. int main(void)
    {
    char *forward = "string";
  215.  
  216. printf("Before strrev(): %s\n", forward);
    strrev(forward);
    printf("After strrev(): %s\n", forward);
    return 0;
    }
    函数名: strset
    能: 将一个串中的所有字符都设为指定字符
    法: char *strset(char *str, char c);
    程序例:
  217.  
  218. #include <stdio.h>
    #include <string.h>
  219.  
  220. int main(void)
    {
    char string[10] = "123456789";
    char symbol = 'c';
  221.  
  222. printf("Before strset(): %s\n", string);
    strset(string, symbol);
    printf("After strset(): %s\n", string);
    return 0;
    }
  223.  
  224. 函数名: strstr
    能: 在串中查找指定字符串的第一次出现
    法: char *strstr(char *str1, char *str2);
    程序例:
  225.  
  226. #include <stdio.h>
    #include <string.h>
  227.  
  228. int main(void)
    {
    char *str1 = "Borland International", *str2 = "nation", *ptr;
  229.  
  230. ptr = strstr(str1, str2);
    printf("The substring is: %s\n", ptr);
    return 0;
    }
  231.  
  232. 函数名: strtod
    能: 将字符串转换为double型值
    法: double strtod(char *str, char **endptr);
    程序例:
  233.  
  234. #include <stdio.h>
    #include <stdlib.h>
  235.  
  236. int main(void)
    {
    char input[80], *endptr;
    double value;
  237.  
  238. printf("Enter a floating point number:");
    gets(input);
    value = strtod(input, &endptr);
    printf("The string is %s the number is %lf\n", input, value);
    return 0;
    }
    函数名: strtol
    能: 将串转换为长整数
    法: long strtol(char *str, char **endptr, int base);
    程序例:
  239.  
  240. #include <stdlib.h>
    #include <stdio.h>
  241.  
  242. int main(void)
    {
    char *string = "87654321", *endptr;
    long lnumber;
  243.  
  244. /* strtol converts string to long integer */
    lnumber = strtol(string, &endptr, 10);
    printf("string = %s long = %ld\n", string, lnumber);
  245.  
  246. return 0;
    }
  247.  
  248. 函数名: strupr
    能: 将串中的小写字母转换为大写字母
    法: char *strupr(char *str);
    程序例:
  249.  
  250. #include <stdio.h>
    #include <string.h>
  251.  
  252. int main(void)
    {
    char *string = "abcdefghijklmnopqrstuvwxyz", *ptr;
  253.  
  254. /* converts string to upper case characters */ ptr = strupr(string);
    printf("%s\n", ptr);
    return 0;
    }
  255.  
  256. 函数名: tolower
    能: 把字符转换成小写字母
    法: int tolower(int c);
    程序例:
  257.  
  258. #include <string.h>
    #include <stdio.h>
    #include <ctype.h>
  259.  
  260. int main(void)
    {
    int length, i;
    char *string = "THIS IS A STRING";
  261.  
  262. length = strlen(string);
    for (i=0; i<length; i++)
    {
    string[i] = tolower(string[i]);
    }
    printf("%s\n",string);
  263.  
  264. return 0;
    }
  265.  
  266. 函数名: toupper
    能: 把字符转换成大写字母
    法: int toupper(int c);
    程序例:
  267.  
  268. #include <string.h>
    #include <stdio.h>
    #include <ctype.h>
  269.  
  270. int main(void)
    {
    int length, i;
    char *string = "this is a string";
  271.  
  272. length = strlen(string);
    for (i=0; i<length; i++)
    {
    string[i] = toupper(string[i]);
    }
  273.  
  274. printf("%s\n",string);
  275.  
  276. return 0;
    }

C++ 字符串相关函数的更多相关文章

  1. Perl函数:字符串相关函数

    Perl字符串相关函数 字符串的内置函数有: chomp, chop, chr, crypt, fc, hex, index, lc, lcfirst, length, oct, ord, pack, ...

  2. db2字符串相关函数的使用

    db2字符串相关函数的使用 from :internet    一.字符转换函数 1.ASCII() 返回字符表达式最左端字符的ASCII 码值.在ASCII()函数中,纯数字的字符串可不用‘’括起来 ...

  3. 009.Python字符串相关函数

    字符串相关函数 1 capitalize 字符串首字母大写 strvar = "this is a dog" res = strvar.capitalize() print(res ...

  4. Oracle学习笔记_09_字符串相关函数

    二.参考资料 0.Oracle中的字符串类型及相关函数详解 1.ORACLE 字符串操作 2.oracle函数大全-字符串处理函数

  5. JMeter常用字符串相关函数

    JMeter的惯用函数使用-字符串相关 主要的函数如下:1.将字符串转为大写或小写: ${__lowercase(Hello,)}  ${__uppercase(Hello,)}2.生成字符串:  _ ...

  6. python3 字符串相关函数

    python版本 3.5 #Author by Liguangbo#_*_ coding:utf-8 _*_str="i like study python, welcome to my p ...

  7. sqlserver 字符串相关函数

    http://www.cnblogs.com/jiajiayuan/archive/2011/06/16/2082488.html 以下所有例子均Studnet表为例:  计算字符串长度len()用来 ...

  8. MySQL字符串相关函数学习二

    ① LOWER(str):将字符串转为小写:与此函数具有相同作用的函数有LCASE() 如果参数是小写.数字或其他特殊字符,则返回原数据 ② LEFT(str, len):返回字符串str左边的len ...

  9. MySQL字符串相关函数学习一

    这里总结一下常用的或者有可能用到的一些字符串内建函数 ① ASCII() :返回字符的ASCII码 如果输入的不是一个字符而是一个字符串呢?ascii()会只取第一个字符作为计算的参数,如: ② CH ...

随机推荐

  1. poj动态规划列表

    [1]POJ 动态规划题目列表 容易: 1018, 1050, 1083, 1088, 1125, 1143, 1157, 1163, 1178, 1179, 1189, 1208, 1276, 13 ...

  2. 修改的某人的SqlHelper FOR ODBC

    随便找来的,源作者不明. 本来是SQL SERVER 的 修改为 ODBC使用. 并且修改了连接字符串,可以允许修改一次. using System; using System.Collections ...

  3. 如何为不定高度(height:auto)的元素添加CSS3 transition-property:height 动画

    但一个元素不设置height时,它的默认值是 auto,浏览器会计算出实际的高度. 但如果想给一个 height:auto 的块级元素的高度添加 CSS3 动画时,该怎么办呢? 从 MDN 的可以查到 ...

  4. 坑到了,EF执行带事物的存储过程

    用EF开发项目,今天调用 带事物 存储过程,始终报错,"EXECUTE 后的事务计数指示 BEGIN 和 COMMIT 语句的数目不匹配.上一计数 = 1,当前计数 = 0.\r\nEXEC ...

  5. Javascript验证用户输入URL地址是否正确

    <script type="text/javascript">function checkUrl() { var url = document.getElementBy ...

  6. Android数据库之SQLite数据库

    Android数据库之SQLite数据库 导出查看数据库文件 在android中,为某个应用程序创建的数据库,只有它可以访问,其它应用程序是不能访问的,数据库位于Android设备/data/data ...

  7. Cocos2d-x文本菜单

    文本菜单是菜单项只是显示文本,文本菜单类包括了MenuItemLabel.MenuItemFont和MenuItemAtlasFont.MenuItemLabel是个抽象类,具体使用的时候是使用Men ...

  8. Professional iOS Network Programming Connecting the Enterprise to the iPhone and iPad

    Book Description Learn to develop iPhone and iPad applications for networked enterprise environments ...

  9. OC8_代理基本概念

    // // ProtectedDelegate.h // OC8_代理基本概念 // // Created by zhangxueming on 15/6/24. // Copyright (c) 2 ...

  10. linux交叉编译裁剪内核记录

    刚开始学习嵌入式内核编译,因为要修改内核的默认配置,因此这里把自己的学习记录写下来,方便以后查阅,也给别人一个参考,有什么写的不对的或者更好的方法,请指正~ 开发板有usb从口,现在想要让开发板作为一 ...