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

搜索资源列表

  1. function3

    0下载:
  2. The DocPolynom to Character Converter The char method produces a character string that represents the polynomial displayed as powers of an independent variable, x. Therefore, after you have specified a value for x, the string returned is a syntac
  3. 所属分类:matlab

    • 发布日期:2017-04-11
    • 文件大小:1002
    • 提供者:sabah_altaie
  1. 2011

    0下载:
  2. 设计并实现一个简单的银行储蓄系统,完成活期和定期用户的存款和取款业务。要求如下: 1. 实现描述银行的类,记录系统中现有哪些储户(提示:可用对象数组实现,但须注意判断数组越界的情况),该类中要求包含三个函数: (1) 生成新储户的函数; (2) 按照账户删除储户的函数(需判断该帐户是否还有余额) (3) 按照账户查询储户的函数,要求显示查询结果。 2. 定义储户类。其属性包含账号,存款人姓名、身份证号、地址、存款余额;其操作功能有存款、取款、显示储户信息。 3. 编写ma
  3. 所属分类:assembly language

    • 发布日期:2017-04-03
    • 文件大小:1207
    • 提供者:chen
  1. 4-4

    0下载:
  2. 将编号为0和1的两个栈存放于一个数组空间V[m]中,栈底分别处于数组的两端。这种双栈结构的类定义,并实现判栈空、判栈满、插入、删除算法。-Will be numbered 0 and 1 array of two stacks placed in a space V [m], the stacks were in the bottom ends of the array. This dual-stack structure of class definitions, and to achieve
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:445611
    • 提供者:朱朱
  1. dbclass

    0下载:
  2. 因为MFC完全支持数据库应用程序的开发,所以大多数数据库应用都使用CDatabase和CRecordset类,并且类向导(Class Wizard)提供了快速简易的方式来使用这两个类。有一点不足的就是当应用程序涉及到多表数据库时,类向导将产生大量的关于记录集的源码文件使得工程(project)给人的感觉很混乱。 这里介绍如何使用一个模板记录集类来降低类向导所产生的记录集文件的数量,同时增强记录积类(CRecordset)的功能。这个模板记录集类叫做:CDataSet。它的主要目的是降低代码量
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:33322
    • 提供者:王鹏
  1. xifan-assistant

    0下载:
  2. 一个个人类库,包括字符串操作类、PC控制类、Object数组操作类等等。-A personal library, including string manipulation class, PC control class, Object class array of operations and so on.
  3. 所属分类:CSharp

    • 发布日期:2017-04-05
    • 文件大小:902294
    • 提供者:zhouxifan
  1. HugeInteger

    0下载:
  2. 将整数的各个数位存储为一个长度为四十的字符数组中各个元素。能够进行四十位的整数的加减法-Create a class HugeInteger that uses a 40-element array of digits to store integers as large as 40 digits each (e.g. 8783 is stored as an array of {3,8,7,8,0,0,0,....} ), and use another boolean membe
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:375618
    • 提供者:肖鑫
  1. basic-knowledge-of-data-structure

    0下载:
  2. 数据结构基本入门知识,共33个ppt,全是我上课的资料,现在拿来分享。其中有:线性表,栈队列递归,串数组广义表,数与森林,图,查找,排序等等。-Knowledge of the basic entry data structure, a total of 33 ppt, all the information I have class, and now to be shared. Including: linear form, the stack queue recursion, string
  3. 所属分类:Data structs

    • 发布日期:2017-05-13
    • 文件大小:3161789
    • 提供者:jijiyaya
  1. classPolygon

    0下载:
  2. C++ class for checking mouse (point) at the polygons (they are given in class (as array), but you can remake it from text files for example)
  3. 所属分类:2D Graphic

    • 发布日期:2017-03-30
    • 文件大小:2775
    • 提供者:Layer
  1. GPS--C_Matlab

    0下载:
  2. 在本 GPS 软件接收机的实现中,主要针对C/A 码的捕获和跟踪算 法进行了C++代码的优化和改进,并在C++环境中调用Matlab 来实现 傅立叶变换的快速计算,将C++和Matlab 有机地结合在一起,提高了软件接收机的处理速度;使用类函数来实现大量的数组和矩阵运算,简化了程序的复杂性,提高了程序的可读性;分析所得到的卫星并从中筛选出四颗卫星来计算用户位置,提高了用户位置的精度。-In the GPS software receiver implementation, mainly
  3. 所属分类:GPS develop

    • 发布日期:2017-03-31
    • 文件大小:493318
    • 提供者:zhouyang
  1. Weapon

    0下载:
  2. 1)、定义一个抽象类Weapon,该抽象类有两个抽象方法attack(),move():这两个方法分别表示武器的攻击方式和移动方式。 (2)、定义3个类:Tank,Flighter,WarShip都继承自Weapon,分别用不同的方式实现Weapon 类中的抽象方法。 (3)、写一个类Army,代表一支军队,这个类有一个属性是Weapon数组w(用来存储该军队所拥有的所有武器);该类还提供一个构造方法,在构造方法里通过传一个int类型的参数来限定该类所能拥有的最大武器数量,并用这一
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:33177
    • 提供者:liuxiao
  1. ChangNum

    0下载:
  2. VC++金额大小写转换实用源码,在数字框中任意输入数字 ,己把它做成了一个CnumToHan类,使用方法在示范程序中。运行程序后,在下边的文本框中会适时转换出对应的中文大小汉字,学习VC的可参考一下,这是一个数组与字符结合的综合实例。 -Case the amount of VC++ source code conversion utility, enter any number in the digital box, had it made into a CnumToHan class,
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-25
    • 文件大小:19732
    • 提供者:madud00106
  1. command_window_text

    0下载:
  2. 这个m-文件允许你导出所有在命令窗口中的文本到字符串单元阵列,每个条目是一个从窗口文本行。未分析的原始字符串也可以,如果需要的话。 操作非常简单 -使用findjobj功能(操作要求),此文件查找在根窗口,并得到适当的对象从文本。 我一直在寻找一种方式做,特别是一些软件中的错误我始终跟踪这,似乎已经没有人写了这种方法,所以我现在在这里供您使用。 这是一个有点慢,有可能是一个特定类寻找更快的方法- 如果这样,让我知道!-This m-file allows you t
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:1665
    • 提供者:bcmvqqve
  1. byteBuffer

    0下载:
  2. 简单的字节缓冲处理类,支持asc和hex之间的字符串和Byte数组相互转化-Simple bytes buffer processing class, support the asc and between the string and: mutual transformation between Chinese array
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:1511
    • 提供者:grdmen
  1. CArrayDemo

    0下载:
  2. CArray数组模板类的使用实例源码,很不错的demo-The use of an array of template class CArray source code examples, very good demo
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-07
    • 文件大小:36390
    • 提供者:吴燕燕
  1. zhan

    0下载:
  2. 有一种栈,这种栈是按数组索引减小的方向增长的 在这个栈模型中,索引top在每次push索引操作后减小,而在pop操作后则增大。用此模型实现stack类模板-There is a stack, this stack is reduced by the array index in the stack direction of the growth model, the index top index in each push operation is reduced, and after th
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-06
    • 文件大小:1088253
    • 提供者:onway
  1. huibian

    0下载:
  2. 编制一个程序,要求接收从键盘输入的一个班的学生成绩,并存放于50字节的GRADE数组中,其中GRADE+N保存学号N+1的学生成绩。然后根据GRADE中的学生成绩,把学生名次填入50字节的RANK数组中,其中RANK+N的内容是学号为N+1学生的名次。再按学号顺序把学生成绩及学生名次显示出来。-The preparation of a program that requests to receive input from the keyboard of a class of student a
  3. 所属分类:assembly language

    • 发布日期:2017-04-16
    • 文件大小:30989
    • 提供者:王若松
  1. colored-map

    0下载:
  2. Author :M.Z.M Irshath ICT0506008 Program Name: Coloring Map Date : 15.August.2009 Purpos : Coloring Map problem BICT RUSL Program is designed to color a map using four colors Red, Green, Blue, and Yellow. Folder co
  3. 所属分类:SCM

    • 发布日期:2017-03-30
    • 文件大小:19014
    • 提供者:Irshath
  1. ymm

    0下载:
  2. 输入15个学生存入数组,并任意输入姓名,根据姓名查找相关信息。其中,定义一个学生类,成员变量包括学生号、姓名、年龄、毕业学校等信息,成员函数包括返回学生号、返回学生名、根据姓名查找学生相关信息。 -15 students entered into the array, and any input the name, by name to find relevant information. Among them, the definition of a student class, mem
  3. 所属分类:Education soft system

    • 发布日期:2017-04-10
    • 文件大小:928
    • 提供者:
  1. ADOdb.Manual

    0下载:
  2. PHP s database access functions are not standardised. This creates a need for a database class library to hide the differences between the different database API s (encapsulate the differences) so we can easily switch databases. PHP 4.0.5 or later is
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-02
    • 文件大小:247260
    • 提供者:tirins
  1. JpegDecoder

    0下载:
  2. JpegDecoder类主要用于Jpeg文件的解码。 使用方法十分简单,只需要利用GetJPEGBuffer函数返回解码后的像素数组。在第三篇的实例MagicHouse中就需要使用这个类。-JpegDecoder class is mainly used for the decoding of Jpeg files. Usage is very simple, only need to use GetJPEGBuffer function returns an array of pixels
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-03-27
    • 文件大小:9869
    • 提供者:王胜
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 25 »
搜珍网 www.dssz.com