CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - String类

搜索资源列表

  1. User-defined-String

    0下载:
  2. 自定义字符串类的C++实现--头文件及源代码-- Header files and source code from defined string class C++ implementation
  3. 所属分类:source in ebook

    • 发布日期:2017-11-22
    • 文件大小:3749
    • 提供者:于练
  1. String

    0下载:
  2. VC字符串操作类,基本涵盖所有字符串操作-VC string manipulation class, covering all string manipulation
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-08
    • 文件大小:19128
    • 提供者:Chopard
  1. search-word

    0下载:
  2. //利用标准的C++ string类的字符串处理功能,实现单词的比较,并输出比较的统计结果。-//String handling functions using standard C++ string class, word comparison, and the output of the statistical results of the comparison.
  3. 所属分类:Other systems

    • 发布日期:2017-11-27
    • 文件大小:1083
    • 提供者:阚敏
  1. 4

    0下载:
  2. string 类实现,各类函数功能的实现,增删改查以及字符串运算-Implement Your Own String Class Using Naive String Matching Algorithm:Students successfully completing this assignment would master the following outcomes. • Understand the string storage and operations
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-01
    • 文件大小:2914
    • 提供者:xiaoxiaoyinzi
  1. CPP3

    0下载:
  2. 模拟STL库中string类的功能,编写MyString类,至少实现字符串间的赋值、比较(包括>、<、=、!=)和字符串间的”+”(连接)操作,同时能通过下面列举的形式对字符串对象进行初始化。 如:MyString str1(“I am ”),str2=“a student” if(str1>str2) cout<<“larger\n” if(str1<str2) cout<<“smaller\n” if(str1==s
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-22
    • 文件大小:303434
    • 提供者:大头
  1. String-reverse-output

    0下载:
  2. 实现一个表示 n*n 矩阵的模板类。 1) 至少提供如下必要的矩阵操作:加、乘、转置(建议用操作符重载来实现)。 2) 编制一个交互式程序对该模板类进行测试。 含实验报告与源代码-Achieve a representation n* n matrix template class. A) providing at least the following essential matrix operations: addition, multiplication, transposit
  3. 所属分类:Other systems

    • 发布日期:2017-11-12
    • 文件大小:436038
    • 提供者:酉永松
  1. String

    0下载:
  2. 执行字符串类的复制、链接、比较、求子串、交换、删除、定位等功能-Perform string class copy, links, compare, Praying string, swap, delete, positioning and other functions
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-25
    • 文件大小:2130
    • 提供者:依一
  1. aaaaa

    0下载:
  2. 在网上学习C#写的程序,包括99乘法表,String类的学习,字符串按指定样式输出,判断质数,判断是否为润年,数组排序等等。-In the e-learning program written in C#, including 99 multiplication table, String class learning, the string at the specified style output, determine prime numbers, to determine whether
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-18
    • 文件大小:205734
    • 提供者:李秋萍
  1. string

    0下载:
  2. 这是一个为字符串设计的类,实践了指针的用法,并用成员函数实现了字符串的复制及求串长等功能-This is a design for the string class, practice the use of pointers, and use member function implements the string copying and seek long string functions
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:540788
    • 提供者:zhang
  1. CPP_string

    0下载:
  2. C++string 类的重要操作的列表,程序员课自行查阅-C++ string class, a list of important operations, the programmer access to their own class
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:12865
    • 提供者:ntexpa
  1. STRING

    0下载:
  2. 写一个MyString类,可以使用cstring(string.h)中库函数,然后编写代码使用函数-Write a MyString class, you can use the CString (string.h) in the library function, and then write code using function
  3. 所属分类:Project Manage

    • 发布日期:2017-04-15
    • 文件大小:7119
    • 提供者:甘露
  1. hello

    0下载:
  2. 标准的C++String类,源代码,有利于学习初等的C++语言-hello good student
  3. 所属分类:source in ebook

    • 发布日期:2017-04-11
    • 文件大小:1060
    • 提供者:JERRTTOM
  1. java-common-API

    0下载:
  2. 黑马程序员经典笔记:java中常用api(String类、StringBuffer类、基本数据类型包装类、system类、Math类、时间类)-Dark horse classic programmer notes: java commonly used api (String class, StringBuffer class, the basic data types wrapper class, system class, Math class, time category)
  3. 所属分类:software engineering

    • 发布日期:2017-04-05
    • 文件大小:54113
    • 提供者:luyuhui
  1. mystring

    0下载:
  2. 自己编写的一个string类,模拟string!-I have written a string class to simulate string!
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-16
    • 文件大小:10603
    • 提供者:张彪
  1. CPPexam6

    2下载:
  2. 1. 编写并测试 3×3 矩阵转置函数,使用数组保存 3×3 矩阵。 2. 使用动态内存分配生成动态数组来重新完成上题,使用指针实现函数的功能。 3. 编程实现两字符串的连接。要求使用字符数组保存字符串,不要使用系统函数。 4. 使用 string 类声明字符串对象,重新实现上一小题。 5. 声明一个Employee 类,其中包括姓名、街道地址、城市和邮编等属性,以及change_name()和 display()等函数。display()显示姓名、街道地址、城市和邮编等属
  3. 所属分类:Other windows programs

    • 发布日期:2015-10-12
    • 文件大小:1053696
    • 提供者:wolf
  1. String_js

    0下载:
  2. 一些常用的String类和自己编写的比较有用的方法-Some common String class and more useful method for their preparation
  3. 所属分类:JavaScript

    • 发布日期:2017-04-15
    • 文件大小:7405
    • 提供者:张正鑫
  1. MyString

    0下载:
  2. 实现String类,将基本的功能实现,希望能对你有所帮助-Realization of the String class, the basic realization of the function, I hope you can help
  3. 所属分类:Other systems

    • 发布日期:2017-05-02
    • 文件大小:786739
    • 提供者:杨胜智
  1. fengpeng_string_class-master

    0下载:
  2. 自己写的string类c++,不是特别全,但能用-Write your own string class c++, is not particularly wide, but can
  3. 所属分类:Console

    • 发布日期:2017-04-14
    • 文件大小:5433
    • 提供者:fengpeng
  1. cPP_string

    0下载:
  2. 详细剖析C++的string类用法,为初学者提供一个比较好的教程-Detailed analysis of the C++ string class usage
  3. 所属分类:software engineering

    • 发布日期:2017-04-25
    • 文件大小:47544
    • 提供者:卜雪峰
  1. chongzai

    0下载:
  2. 模仿标准库的字符串string,实现一个自己的String 类,要求重载运算符+,=,==,[] 等。-Mimic the standard library string string, to achieve its own String class, requiring overloaded operators+, =, ==, [] And so on.
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:932
    • 提供者:汤广宇
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 45 »
搜珍网 www.dssz.com