您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. #include <stdio.h>

  2. #include #include #include #include typedef struct matrix { int row; int col; } matrix; typedef struct minCost { int cost; int mid; } minCost; minCost** func(matrix* mt, ssize_t count) { int i , j, step, min, temp, mid; minCost **rows; rows = (m
  3. 所属分类:Java

    • 发布日期:2009-06-01
    • 文件大小:6144
    • 提供者:jiangqi1012
  1. C-Lib-string.c

  2. Linux的作者Linus Torvalds的C语言函数库源代码(部分)string.c1 /*2 * linux/lib/string.c3 *4 * Copyright (C) 1991, 1992 Linus Torvalds5 */6 7 /*8 * stupid library routines.. The optimized ve rsions should generally be found9 * as inline code in 10 *11 * These are bug
  3. 所属分类:C

    • 发布日期:2007-09-18
    • 文件大小:5120
    • 提供者:mac007cn
  1. string .h 的实现

  2. string.c C中string 操作的具体实现
  3. 所属分类:C

    • 发布日期:2009-12-13
    • 文件大小:12288
    • 提供者:lhsls07
  1. 不使用库文件实现STRING函数

  2. 在不使用库文件的情况下,只使用一些原子操作实现string.h头文件的函数,如strcpy,strcmp等··
  3. 所属分类:C

    • 发布日期:2009-12-15
    • 文件大小:108544
    • 提供者:constant_maic
  1. string.h的函数大全

  2. string.h内所有函数的使用 经典 帮助你学习字符串的使用
  3. 所属分类:C++

    • 发布日期:2010-04-08
    • 文件大小:9216
    • 提供者:ljh0703
  1. string 类及所有的方法(c++)

  2. string类 之所以抛弃char*的字符串而选用C++标准程序库中的string类,是因为他和前者比较起来,不必 担心内存是否足够、字符串长度等等,而且作为一个类出现,他集成的操作函数足以完成我们大多数情况下(甚至是100%)的需要。我们可以用 = 进行赋值操作,== 进行比较,+ 做串联(是不是很简单?)。我们尽可以把它看成是C++的基本数据类型。 首先,为了在我们的程序中使用string类型,我们必须包含头文件 。如下: #include //注意这里不是string.h string
  3. 所属分类:C++

    • 发布日期:2010-06-01
    • 文件大小:125952
    • 提供者:fhxy_xzw
  1. C++中的string类

  2. 之所以抛弃char*的字符串而选用C++标准程序库中的string类,是因为他和前者比较起来,不必 担心内存是否足够、字符串长度等等,而且作为一个类出现,他集成的操作函数足以完成我们大多数情况下(甚至是100%)的需要。我们可以用 = 进行赋值操作,== 进行比较,+ 做串联(是不是很简单?)。我们尽可以把它看成是C++的基本数据类型。 首先,为了在我们的程序中使用string类型,我们必须包含头文件 。如下: #include //注意这里不是string.h string.h是C字符串头
  3. 所属分类:嵌入式

    • 发布日期:2011-03-31
    • 文件大小:9216
    • 提供者:zfly_deng
  1. C语言库函数源码(string.h)

  2. 里面包含大多数的C语言库函数源码,其中string.h中的源码最为多,希望能对大家有所帮助。
  3. 所属分类:C

    • 发布日期:2011-04-12
    • 文件大小:1048576
    • 提供者:ztsabc
  1. string.h函数的实现

  2. string.h函数的实现 char *strcpy_1(char *dst,const char *src)   {    while(*dst++=*src++);    return dst;    //notice: wrong return!!!!   } //this is a fault function   // Left it to remind me never commit the same question      char * strcpy_2(char * dst
  3. 所属分类:C

    • 发布日期:2011-05-03
    • 文件大小:10240
    • 提供者:xinyuxinhai
  1. string.h函数介绍大全

  2. 主要介绍了string.h头文件里面的所有字符串处理函数。
  3. 所属分类:C

    • 发布日期:2011-05-06
    • 文件大小:24576
    • 提供者:abaobaohao
  1. C语言字符串处理库函数实现

  2. 资料比较全地整理了string.h中常见的字符串处理函数,对每个函数完整地实现并有简要的注释。如果你喜欢深入研究C编译器技术,本资料值得你拥有。
  3. 所属分类:C

    • 发布日期:2011-11-21
    • 文件大小:17408
    • 提供者:l_soft
  1. string.h库文件

  2. /*** *string.h - declarations for string manipulation functions * * Copyright (c) Microsoft Corporation. All rights reserved. * *Purpose: * This file contains the function declarations for the string * manipulation functions. * [ANSI/System V] * * [
  3. 所属分类:C

    • 发布日期:2013-11-23
    • 文件大小:28672
    • 提供者:aerozichen
  1. String.h函数详解

  2. String.h函数详解 1、strcpy   函数名: stpcpy   功 能: 拷贝一个字符串到另一个   用 法: char *stpcpy(char *destin, char *source);   程序例:   #include   #include   int main(void)   {   char string[10];   char *str1 = "abcdefghi";   stpcpy(string, str1);   printf("%s\n", strin
  3. 所属分类:C

    • 发布日期:2013-11-27
    • 文件大小:60416
    • 提供者:u012978278
  1. string.h字符串库文件.txt

  2. string.h中包含了常用的一些库文件
  3. 所属分类:C

    • 发布日期:2015-05-06
    • 文件大小:28672
    • 提供者:baidu_27490831
  1. c语言库函数源代码(包含string.h)

  2. 学习C语言库函数源代码是提高C语言最有效的方式之一
  3. 所属分类:C

    • 发布日期:2017-08-02
    • 文件大小:1048576
    • 提供者:qq_39599500
  1. tomcrypt.h

  2. #ifndef TOMCRYPT_H_ #define TOMCRYPT_H_ #include #include #include #include #include #include #include /* use configuration data */ #include #ifdef __cplusplus extern "C" { #endif /* version */ #define CRYPT 0x0116 #define SCRYPT "1.16" /* m
  3. 所属分类:C

    • 发布日期:2009-03-12
    • 文件大小:54272
    • 提供者:huiqiwei321
  1. String.h文件

  2. 标准库 - 简介 string .h 头文件定义了一个变量类型、一个宏和各种操作字符数组的函数。
  3. 所属分类:C++

    • 发布日期:2018-08-21
    • 文件大小:6144
    • 提供者:weixin_36944798
  1. 字符串函数string.h应用举例

  2. 基于51单片机的string.h应用举例,内涵仿真图和Keil工程文件。
  3. 所属分类:C

    • 发布日期:2019-03-06
    • 文件大小:31744
    • 提供者:qq_31950707
  1. C字符串函数对应的C++ string操作详解

  2. string是STL里的标准类,习惯了使用指针操作C的char *字符串,刚开始并不是很适应,主要原因是对string.h里的函数没有找到合适的C++替换方法,因此,对常用的sring.h里的函数替换说明如下: strcpy: str.substr() strncpy: str.substr(pos, n) strcmp: == strncmp: == strstr: str.find() strcat: str.append() strchr: str.find() strtok
  3. 所属分类:其它

    • 发布日期:2020-12-20
    • 文件大小:35840
    • 提供者:weixin_38727694
  1. C 标准库 – string.h

  2. C 标准库 – 简介 string .h 头文件定义了一个变量类型、一个宏和各种操作字符数组的函数。 库变量 下面是头文件 string.h 中定义的变量类型: 序号 变量 & 描述 1 size_t 这是无符号整数类型,它是 sizeof 关键字的结果。 库宏 下面是头文件 string.h 中定义的宏: 序号 宏 & 描述 1 NULL 这个宏是一个空指针常量的值。 库函数 下面是头文件 string.h 中定义的函数: 序号 函数 & 描述 1
  3. 所属分类:其它

    • 发布日期:2021-01-03
    • 文件大小:46080
    • 提供者:weixin_38672800
« 12 3 4 5 6 7 8 9 10 ... 50 »