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

搜索资源列表

  1. 20130828

    0下载:
  2. VB里创建动态控件的方法,前提是使用数组控件,很实用。-VB to create a dynamic control method, the premise is to use an array of controls, very practical.
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-09
    • 文件大小:1833
    • 提供者:yangxiaoping
  1. 876545678

    0下载:
  2. 本实例企业员工IC卡考勤系统用到了IC卡自带的Mwic_32.dll组件,运行前,需将该组件拷贝到Debug文件夹中。可由此开发一个为企业内部员工IC卡考勤的程序,。通过这个源码你还可以学习如何使用和声明动态链接库,设置的一个变量,用于控制一张IC卡只读取一次以及向数据库中只添加一次内容,向IC卡中写数据,读取IC卡中数据,核对卡密码,调用公共类中的ReadIC方法开始循环读取IC卡,端口初始化,设备密码格式,将数据库中的图片转换成二进制流,将字节数组存入到二进制流中,将图片存入到指定的路径等,
  3. 所属分类:CSharp

    • 发布日期:2017-04-05
    • 文件大小:636068
    • 提供者:余香肉丝
  1. DP

    0下载:
  2. 动态规划问题。给定一个整数的二维数组,由其中若干邻近元素构成的矩形称为子数组。 编程计算所有子数组元素之和的最大值。输入为整数n,及n^2个数,输出为所有子数组元素之和的最大值-Dynamic programming problem.Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1*1 or greater l
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:13509
    • 提供者:
  1. answer.

    0下载:
  2. ACM递归题组训练,涉及到数组的应用,动态规划思想等等。-ACM recursive problem sets training, involving an array of applications, dynamic programming and so on.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-16
    • 文件大小:16320
    • 提供者:王峰辉
  1. msp430

    0下载:
  2. 单片机msp430语沿全套作业,包括随机数的产生,动态内存管理,数组,指针-Language along msp430 microcontroller full operation, including random number generation, dynamic memory management, arrays, pointers, etc.
  3. 所属分类:SCM

    • 发布日期:2017-05-02
    • 文件大小:526519
    • 提供者:yue
  1. Dynamic-reading-array

    0下载:
  2. C++动态读取数组源代码,实现数组大小自动增长-Dynamic reading two-dimensional array
  3. 所属分类:Algorithm

    • 发布日期:2017-04-11
    • 文件大小:716
    • 提供者:yuliu
  1. shiyan1

    0下载:
  2. 编写一个简单的学生成绩录入及显示系统,具体要求如下:  定义一个成绩结构体:至少包括C++、数学、英语;  定义一个学生结构体:至少包括姓名、性别、年龄、成绩结构体成员;  定义一个学生成绩录入函数,用于对学生进行成绩录入;采用动态分配的内存(new 和delete),对学生信息进行存储,要根据指定的输入数量进行内容分配;  重载函数的使用:定义二个比较函数,函数名为comp,该函数即可以对姓名进行比较也可以对成绩进
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-26
    • 文件大小:147881
    • 提供者:任佳
  1. CBinary

    0下载:
  2. 一个关于十六进制数组动态创建的方法,对使用者在编写通信帧的时候很有用-An array of dynamically created on hexadecimal method, the users in the preparation of the communication frame is useful when
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1038
    • 提供者:杨瑞
  1. Build-dynamic-array-of-structures

    0下载:
  2. 动态创建结构体数组,实现存放学生信息的功能-Dynamically create an array of structures to realize the function of storing student information
  3. 所属分类:assembly language

    • 发布日期:2017-04-10
    • 文件大小:825
    • 提供者:zhen
  1. cPP.DataMakeraConsolePrinter

    0下载:
  2. 产生动态申请内存的一维二维数组数据; 在控制台输出数据; 此版本为类模板,可任意指定数据类型- Generate a one-dimensional two-dimensional array of dynamic application data memory In the console output data This version is a class template, you can specify any data type
  3. 所属分类:Console

    • 发布日期:2017-04-14
    • 文件大小:2604
    • 提供者:张谋
  1. hdtqx

    0下载:
  2. 利用数组定义方式来绘制动态曲线,而且屏幕画面后可以自动右移。-The use of an array of ways to draw dynamic curve is defined, and the screen can be automatically shifted to the right.
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-13
    • 文件大小:2167
    • 提供者:吴拴龙
  1. FindPath

    0下载:
  2. 寻径问题: 给定n个村庄之间的交通图,若村庄i和村庄j之间有道路,则将顶点i和顶点j用边连接,边上的权Wij 表示这条道路的长度。现在要从这n个村庄选择一个村庄建一所医院,问这所医院应建在哪个村庄,才能使离医院最远的村庄到医院的距离最短? 实现的功能: 1.自动生成数据; 2.自动生成字符串; 3.显示矩阵图; 4.非法输入的判断; 5.重复输入现有的相同数据的判断; 6.动态生成一维数组,二维数组; 7.数组内数值的比较以及输出; 8.查找标示符在数组中
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:3741
    • 提供者:林檎
  1. mxn_malloc_topscore

    0下载:
  2. 编写一个能计算任意m行n列的二维数组中的最大值,并指出其所在行列下标的函数,利用该函数和动态内存分配方法,计算任意m个班、每班n个学生的某门课成绩的最高分,并指出具有该最高分成绩的学生是第几个班的第几个学生。-Write a two-dimensional array can calculate any m rows and n columns maximum value, noting that the underlying function in their ranks, the use o
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:839
    • 提供者:沈秋实
  1. HomeWork4_01

    0下载:
  2. 为数组动态分配内存,实现数组数值的平均值计算。-An array of dynamic memory allocation, the average is calculated to achieve an array of values.
  3. 所属分类:Console

    • 发布日期:2017-05-16
    • 文件大小:4007170
    • 提供者:stone
  1. graph

    0下载:
  2. 在graph控件中实现显示一组静态正弦数组数据,在Strip Chart 中随机产生数据并动态显示,在Digital Graph中显示一组数字信号-Realize the fast Fourier transform
  3. 所属分类:LabView

    • 发布日期:2017-04-07
    • 文件大小:243412
    • 提供者:杨梦玲
  1. Dynamic-two-dimensional-array

    0下载:
  2. 使用Vector建立一个动态二维数组类,有使用指针和不适用指针两种方法。-Dynamic Double Dimensional Array of vector
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:4525
    • 提供者:ks
  1. mhc02

    1下载:
  2. 采用指向指针的指针来动态分配二维数组,存储读取的文本结构内的数据。求得这二维数组内的行均值与协方差,并整齐输出,最后对所分配的内存进行释放!-Using a pointer to the pointer to dynamically allocated two dimensional array, storage read text structure within the data. Obtained in the two dimensional array of mean and covar
  3. 所属分类:Console

    • 发布日期:2017-03-09
    • 文件大小:280576
    • 提供者:马海池
  1. graph

    0下载:
  2. labwindows环境下,在graph控件中显示一组静态正弦数组数据,在strip chart中产生随机数并动态显示-Under labwindows environment, displays a set of static sine array data in graph control, generate a random number in the strip chart and dynamic display
  3. 所属分类:TreeView

    • 发布日期:2017-04-04
    • 文件大小:305740
    • 提供者:洛彬
  1. clanguage

    0下载:
  2. 这是c语言中,c语言的指针与动态多维数组的实现。这里的思维个人觉得很不错,值得一看。-This is the c language, to achieve dynamic multidimensional array of pointers c language. Individual thinking here feel very good, worth a visit.
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:149955
    • 提供者:tanzy
  1. vbmenuskdlsker

    0下载:
  2. VB6.0动态装入菜单项,把打开的文件记录保存,显示历史记录,下次打开直接点击记录中的文件就可以,现在有好多软件都有类似这样的功能。实现方面:声明数组用来存储菜单中最近打开的三个文件的名称,显示Open对话框,将filenamearry(1)存储到filenamearry(2),将filenamearry(0)存储到filenamearry(1)-VB6.0 dynamically loaded menu item to open the file record keeping, display
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1898
    • 提供者:cpudn44
« 1 2 ... 16 17 18 19 20 2122 23 24 »
搜珍网 www.dssz.com