CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 内存动态分配

搜索资源列表

  1. DataBase.rar

    0下载:
  2. 用VC++,实现一个基于命令行的简单数据库系统,并能够动态的申请和分配内存,Using VC++, the realization of a simple command-line based database system, and be able to apply for and allocation of dynamic memory
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-27
    • 文件大小:10276293
    • 提供者:fan
  1. DynamicMemoryAllocation

    0下载:
  2. 在VC++中简化基于heap的动态内存的分配和释放!-In VC++ in the simplification of the heap-based dynamic memory allocation and release!
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:56509
    • 提供者:tangqing
  1. cunhuguanli

    0下载:
  2. 动态分区分配方式的模拟 在每次分配和回收后显示空闲内存分区链的情况-Simulation of dynamic partitioning distribution and recovery of each displayed after the allocation of free memory partition chain of
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1304
    • 提供者:gyujg
  1. 1

    1下载:
  2. 操作系统中利用最佳适应算法 最坏适应算法 循环首次适应算法 首次适应算法实现动态内存的分配和回收内存-The operating system using the best-fit algorithm worst-fit algorithm loop first-fit algorithm first-fit algorithm to achieve dynamic memory allocation and recovery of memory
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:9632
    • 提供者:雷哲文
  1. p03

    0下载:
  2. 1、编写并测试3×3矩阵转置函数,使用数组保存3×3矩阵 2、使用动态内存分配生成动态数组来重新完成上题,使用指针实现函数的功能。 3.写一个程序,定义基类车Vehicle,有Run,Stop等成员函数,由它派生出2个派生类:(自行车类)、(汽车类),从Bbicyce 、Motoracar派生出Motorcycle(摩托车类),它们都有Run,Stop等成员函数。注意虚函数的作用。 -1, to prepare and test the 3 × 3 matrix transpose
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:1320
    • 提供者:月月
  1. stack_c

    0下载:
  2. 动态内存分配stack源代码。 供新手学习使用。 可以用来熟悉c语言-Dynamic memory allocation stack source code. For the novice learning to use. Can be used to familiar with c language
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:8785
    • 提供者:陈 jiecao
  1. Memory

    0下载:
  2. 计算机操作系统原理 内存分配与回收,动态分区分配,首次适应算法-Principles of computer operating system memory allocation and recovery, dynamic partition allocation, first-fit algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1729
    • 提供者:w
  1. bestfit

    0下载:
  2. 内存动态分配的用最佳适应算法实现的动态分配内存管理-Dynamic allocation of memory to use best-fit algorithm to achieve dynamic allocation of memory management
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:2363
    • 提供者:man哥
  1. sy5

    1下载:
  2. 动态分区分配算法的模拟  初始化功能:内存状态设置为初始状态。  分配功能:要求至少使用两种算法,用户可以选择使用。  回收功能:  空闲块的合并:即紧凑功能,用以消除碎片。当做碎片整理时,需要跟踪分配的空间,修改其引用以保证引用的正确性。  显示当前内存的使用状态,可以使用表格或图形。 -Dynamic partition allocation algorithm simulation &#
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:328342
    • 提供者:陈婷婷
  1. MemoryAllocation

    0下载:
  2. 检验标识符是否合法(动态数组) 根据C语言标识符是否合法的程序 主要联系动态分配内存的使用-Memory Allocation
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:176987
    • 提供者:Bill
  1. main

    0下载:
  2. 自己写的矩阵类。重载了<< >> + - =。动态分配内存。-Write your own matrix class. Overload the < < > > +- =. Dynamic allocation of memory.
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:748
    • 提供者:ahha
  1. function-call

    0下载:
  2. 下列5个函数的功能都是动态分配形参size大小个double型数据的内存,并将内存的首地址返回给函数的调用者。请编写main函数,创建一个包含用户在运行时确定的个数的double型数据的数组,测试以上5个函数,哪些函数能正确的实现上述功能?举例说明如何调用其中正确的函数。-Function call
  3. 所属分类:Other systems

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

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

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

    0下载:
  2. 内存动态分配模拟,内存动态分配模拟。内存动态分配模拟,内存动态分配模拟。-Dynamic memory allocation simulation,Dynamic memory allocation simulation
  3. 所属分类:Other systems

    • 发布日期:2017-11-16
    • 文件大小:902024
    • 提供者:柯锦培
  1. Dynamic-array-2-LQXQ

    0下载:
  2. 动态数组接口实验 增加了最大动态分配内存提高效率 重载操作符= [ ],了解C++封装特性-Dynamic array 2
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:4517
    • 提供者:xiaoqiang
  1. shiyan1

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

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

    0下载:
  2. 动态数组及模板类 任务目标:   学习C++的类机制、模板机制、运算符重载、重载函数机制、内存动态分配与释放等。 任务描述:   使用C++的类机制实现一个动态的数组类MyArray,具有完整的构造和析构函数。使用模板机制,使其能够支持各种数据类型(包括结构体)。MyArray类中实现以下方法: 添加一个元素,使用函数重载的方式,实现1)添加数组尾部,2)添加到指定序号位置; 通过函数,设置指定位置(序号)的元素数据; 删除指定序号的元素; 删除所有元素;
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-28
    • 文件大小:10502296
    • 提供者:周畅
  1. square

    0下载:
  2. 利用动态分配内存,创建二维数组,动态打印出正方形图案,可自由定义边长-Dynamic allocation of memory, creating a two-dimensional array, dynamic print out a square pattern, can be freely defined edge length
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-28
    • 文件大小:36431
    • 提供者:tao
  1. 12.1

    0下载:
  2. c++ primer plus 第12章类和动态分配练习题1(主要是类的动态内存设计)的答案-answer for chapter 12 for c++ primer plus
  3. 所属分类:Other systems

    • 发布日期:2017-05-03
    • 文件大小:702454
    • 提供者:jennyuu
  1. 3-Dynamic-memory-allocation-new

    0下载:
  2. VS2008平台 内有文档 视频 动态内存分配new 为数组动态分配内存 为多维数组分配内存 释放内存delete-There is video document Dynamic memory allocation new For an array dynamically allocated memory Allocate memory for multidimensional arrays Release the delete memory
  3. 所属分类:Other systems

    • 发布日期:2017-05-16
    • 文件大小:3708044
    • 提供者:xw
« 12 »
搜珍网 www.dssz.com