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

搜索资源列表

  1. Dynamic-Memory-Allocation

    0下载:
  2. 这个程序是有关计算机的动态内存分配的数据结构 可以直接加载头文件与源文件即可使用其中的接口-This program is a data structure for dynamic memory allocation of the computer can directly load the header files and source files you can use one of the interfaces
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:2638
    • 提供者:罗宏俊
  1. clock

    0下载:
  2. CLOCK改进算法, 按照最多5块的内存分配情况,编程实现所选算法,动态输入访问内存的块号序列,输出置换结果; 测试:输入合法、非法的访问序列数据,检查程序的正确性和健壮性。-CLOCK algorithm improvements, in accordance with up to five memory allocation in programming to the selected algorithm, the dynamic input access memory block n
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:665
    • 提供者:yuanpan
  1. Linker

    0下载:
  2. 1.编写一个函数Create(),该函数可以用于创建一个链表,链表中的结点包括学号,成绩,具有双向指针,该函数返回链表的头指针。 so on 20:05:11 初期动态输入学生人数(1-35)学号:char型,5位数字,不足5位的前面补0,数字以外时要提示错误信息;成绩:short型,最大值100,大于100或者小于0或者数字以外时要提示错误信息。注意:输入的信息超过相应的位数时,只取前面相应位数的信息。 so on 20:14:56 2.编写一个函数Sort(),该函数可以对函
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:284931
    • 提供者:王林
  1. memory_malloc

    0下载:
  2. 模拟动态内存分配的首次适应法和最佳适应法-Simulation of dynamic memory allocation for the first time to adapt to law and the best fit
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:2098
    • 提供者:zhaohui
  1. zifuchuan

    0下载:
  2. 字符串的操作:1.掌握字符串的操作;2.理解动态内存分配机制。声明一个Employee类,其中包括表示姓名、街道地址、城市和邮编等属-String: 1. To grasp the string operation Understanding of dynamic memory allocation mechanism. Declare an Employee class, including the said name, street address, city and zip code a
  3. 所属分类:source in ebook

    • 发布日期:2017-04-10
    • 文件大小:1215364
    • 提供者:程金凤
  1. code

    0下载:
  2. 用C++类的概念用指针模拟高维数组 主要练习操作符的重载操作以及类的动态内存分配-The concept of C++ class pointer to simulate the dynamic memory allocation for the main practice of high-dimensional array operator overloaded operators as well as class
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1211
    • 提供者:yl
  1. malloc

    0下载:
  2. 各种malloc动态内存分配的实现方法,包括单链,双链,双向,双向循环,目录,伙伴-Various malloc implementations of dynamic memory allocation methods, including the single-stranded and double-stranded, two-way, two-way loop, directories, partners
  3. 所属分类:Embeded Linux

    • 发布日期:2017-11-13
    • 文件大小:6744
    • 提供者:杨斌强
  1. shili

    0下载:
  2. 动态内存分配和析构函数实例以及类的指针成员的的处理方法-Dynamic memory allocation and destructor instance and class pointer member handling methods.Dynamic memory allocation and destructor instance and class pointer member handling methods
  3. 所属分类:Other systems

    • 发布日期:2017-11-23
    • 文件大小:728
    • 提供者:杨静洁
  1. dongtaineicun

    0下载:
  2. 在内存中开辟空间 进行动态内存分配。显示内存大小-Open space in memory for dynamic memory allocation. Display memory size
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-09
    • 文件大小:1183
    • 提供者:潘凯波
  1. MyMalloc

    0下载:
  2. 几种动态内存分配算法的实现 keep a linked list of free blocks-Some dynamic memory allocation algorithm of the keep a linked list of free blocks
  3. 所属分类:Linux Network

    • 发布日期:2017-11-07
    • 文件大小:4980
    • 提供者:pyqing
  1. memb

    0下载:
  2. 因单片机的ram非常有限,本人在实际的工作中发现在编写单片机程序时能使用动态内存分配将对程序结构和提高程序复杂度有很大的帮助,但是编写动态内存分配代码因ram有限又不适宜采用动态链表的方式来管理内存,采用固定分配块的方式又不能充分利用单片机的ram(有时候一个字节都很重要啊),为此想出这个在速度和ram使用效率折中的办法(因为在使用动态内存的地方往往速度要求不是很高)。 本代码是采用C语言编写,可以在任何可编译C语言的工具上编译。 如果你在使用中发现任何的bug,或者对单片机
  3. 所属分类:Other Embeded program

    • 发布日期:2017-12-04
    • 文件大小:8496
    • 提供者:Leo_wei
  1. IDSmile

    0下载:
  2. 学生成绩排名(采用动态内存分配方法的学生成绩处理程序)-Students' Scores (dynamic memory allocation method of student achievement handler)
  3. 所属分类:CSharp

    • 发布日期:2017-11-23
    • 文件大小:1420
    • 提供者:小周
  1. Memory-allocation-simulation

    0下载:
  2. 1.模拟操作系统动态内存分配。 2.对内存合理回收与分配算法。 3.寻找内存块,合并内存 4.模拟各种内存分配算法-1 simulation operating system dynamic memory allocation. (2) a reasonable recovery and the memory allocation algorithms. 3 Look for memory blocks, merging memory 4. Simulate various memo
  3. 所属分类:Console

    • 发布日期:2017-04-07
    • 文件大小:2273
    • 提供者:fei
  1. Dynamic--array1

    0下载:
  2. 动态数组接口 熟悉动态内存的操作原理及其分配和释放,学会使用new/delete; 赋值操作符号"="的重载,操作符(如”[]”)的重载;-Dynamic array
  3. 所属分类:Other windows programs

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

    0下载:
  2. 这个是用链表写的,功能应该比较全的,用链表可实现动态内存分配,方便存储人数不确定的信息-This is written in the list, the function should be more complete, with a linked list which can realize the dynamic memory allocation, convenient to store the number of uncertain information
  3. 所属分类:File Operate

    • 发布日期:2017-04-06
    • 文件大小:240057
    • 提供者:Jimmy
  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. Statistical-line-of-text-characters

    0下载:
  2. 8-12输入学生人数后输入每个学生的成绩,最后输出学生的平均成绩、最高成绩和最低成绩。要求使用动态内存分配来实现。-Enter a line of text, much of which statistics uppercase letters, lowercase letters, spaces, numbers and other characters have.
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-09
    • 文件大小:606
    • 提供者:张张
  1. the-avg---min-and-max-scores

    0下载:
  2. 输入学生人数后输入每个学生的成绩, 最后输出学生的平均成绩、最高成绩和最低成绩。 要求使用动态内存分配来实现-Enter each student s achievement after entering the number of students, Finally, the students grade point average output, the highest score and the lowest score. Require the use of dyn
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-03-29
    • 文件大小:799
    • 提供者:张张
  1. mem

    0下载:
  2. 操作系统实验 动态内存分配 QT界面与C-memory allocation
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-18
    • 文件大小:4901644
    • 提供者:
  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 2 ... 8 9 10 11 12 1314 15 »
搜珍网 www.dssz.com