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

搜索资源列表

  1. differenct

    0下载:
  2. 堆和栈的区别 一、预备知识—程序的内存分配 一个由c/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回收 。注意它与数据结构中的堆是两回事,分配方式倒是类似于链表,呵呵。 3、全局区(静态区)(static)—,全局变量和静态变量的存储是放在一块的,初始化的全局变量和静态变量在
  3. 所属分类:技术管理

    • 发布日期:2008-10-13
    • 文件大小:14949
    • 提供者:stevephen
  1. high_quality_C++_Programming

    0下载:
  2. 该电子书的大部分内容取材于林锐博士一年前的书籍手稿,涉及C++编程规范、编程经验、内存分配等,是学习C++非常好的资料。-the most of the contents of e-books based on a year ago, Dr. LIN books, manuscr ipts, involving C Programming norms, Programming experience, memory allocation, C is a very good learning inf
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:609175
    • 提供者:彭时林
  1. heap

    0下载:
  2. 堆与栈有什么区别,预备知识—程序的内存分配-程序的内存分配
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:3030
    • 提供者:draw
  1. C中的内存空间分配

    0下载:
  2. 堆和栈是两个不用概念,本文详细说明了二者的异同。
  3. 所属分类:编程文档

    • 发布日期:2012-03-11
    • 文件大小:4760
    • 提供者:striker999
  1. delphi和c指针与内存分配比较

    0下载:
  2. delphi和c指针与内存分配比较.doc
  3. 所属分类:其它文档

    • 发布日期:2012-11-13
    • 文件大小:49664
    • 提供者:coolhandy
  1. ch14

    0下载:
  2. 一、教学目的: 要求掌握C++对内存的管理方法,能灵活使用new和delete运算符对堆进行操作。理解和正确使用拷贝构造函数,理解临时对象和无名对象的概念。 二、教学重点: 通过大量的例程的分析,使学生正确掌握堆的分配释放操作,拷贝构造函数的使用。 三、教学难点: 深拷贝和浅拷贝的区别,临时对象和无名对象的理解。-I. Teaching Purpose: To request grasp C++ Memory management methods, the flexib
  3. 所属分类:software engineering

    • 发布日期:2017-05-02
    • 文件大小:77375
    • 提供者:新奇
  1. memoryoperatingsystem

    0下载:
  2. 实现了操作系统的内存模拟管理功能,简单易懂,适合学习。此文档实现了内存管理的动态分区分配,固定分区分配,显示内存分配情况,可实现回收再利用功能。-Achieved the operating system memory management functions simulated, simple and easy to understand, suitable for learning. This document implements the dynamic memory management
  3. 所属分类:Project Design

    • 发布日期:2017-04-17
    • 文件大小:117792
    • 提供者:flexible
  1. 9_08117028

    0下载:
  2. 设计一个实现添加与删除的通讯录,要实现记录的动态添加与删除,记录可以不连续存放,方便查询、插入、删除、打印记录。 2. 设计方案论证 链表可以动态分配内存空间,可以不连续存放数据而能实现数据的有效连接操作主要有查询、插入、删除、打印,对数据的操作方便。 3. 详细设计 首先设计一个创建链表的代码,创建一个链表,设计好表头,利用指针使表头指向下一个接点,利用动态内存分配,来为新加入的记录分配内存 -Design an implementation of add and dele
  3. 所属分类:Document

    • 发布日期:2017-05-08
    • 文件大小:1954641
    • 提供者:杨少华
  1. 2

    0下载:
  2. 实现嵌入式实时操作系统µ C/OS-II内存管理中内存分配和回收的功能-Implementation of embedded real-time operating system μC/OS-II memory management functions of memory allocation and recovery
  3. 所属分类:software engineering

    • 发布日期:2017-04-05
    • 文件大小:48546
    • 提供者:袁丹凤
  1. zuiyoushiyingsuanfa

    0下载:
  2. 可变分区存储管理的内存分配与回收,采用首次适应算法-Variable partition memory allocation of storage management and recovery, using the first fit algorithm
  3. 所属分类:Communication

    • 发布日期:2017-04-10
    • 文件大小:1204
    • 提供者:萧萧
  1. bestfit

    0下载:
  2. 采用最优适应算法完成可变分区存储管理方式的内存分配回收。-Optimal adaptation algorithm using variable partition memory management to complete the memory allocation recovery.
  3. 所属分类:Document

    • 发布日期:2017-04-05
    • 文件大小:5623
    • 提供者:
  1. lru

    0下载:
  2. 了解和掌握寄存器分配和内存分配的有关技术。-Understanding and knowledge of register allocation and memory allocation of the relevant technologies.
  3. 所属分类:software engineering

    • 发布日期:2017-04-01
    • 文件大小:13185
    • 提供者:
  1. neicun

    0下载:
  2. 内存分配,关于c++程序设计中内存分配,有助于理解程序中内存的使用-Memory allocation, c++ programming on memory allocation, the program helps to understand the memory usage
  3. 所属分类:software engineering

    • 发布日期:2017-05-27
    • 文件大小:9689444
    • 提供者:huang feng
  1. pointtopoint

    1下载:
  2. 指针的指针,有关指针内存分配与释放的原理以及代码-Pointer, the pointer memory allocation and release of the principles and code
  3. 所属分类:software engineering

    • 发布日期:2017-03-09
    • 文件大小:23552
    • 提供者:chirb
  1. case

    0下载:
  2. 王婆卖瓜,每卖一个瓜记录该瓜的重量,还要记录所卖出的总重量和中个数。同时还允许退瓜。用面向对象方法设计王婆卖瓜的程序,首先要设计类。以西瓜为对象,对西瓜watermelon类定义各种属性和操作。现在用动态内存分配的方案编写该程-Every potter praises his record that each sell a melon melon s weight, but also record the total weight sold and the number. It also all
  3. 所属分类:Project Design

    • 发布日期:2017-04-05
    • 文件大小:54489
    • 提供者:王平
  1. ics-lab6

    0下载:
  2. 一个关于计算机系统动态内存分配实验的高效实现方案。采用了二叉树排序。-csapp lab6 memory allocation
  3. 所属分类:software engineering

    • 发布日期:2017-11-06
    • 文件大小:324445
    • 提供者:刘聿
  1. the-Art-of-Memory-Map-

    0下载:
  2. davinci内存分配 Mastering the Art of Memory Map Configuration-Mastering the Art of Memory Map Configuration
  3. 所属分类:Project Design

    • 发布日期:2017-04-02
    • 文件大小:454336
    • 提供者:Lewis
  1. allocates-space-maximum-memory-array

    0下载:
  2. main 在编译器中数组最大的内存分配空间-main in the compiler allocates space maximum memory array
  3. 所属分类:Software Testing

    • 发布日期:2017-04-04
    • 文件大小:4773
    • 提供者:郑伟
  1. mymalloc

    0下载:
  2. 自定义实现了动态分配内存的函数,可以检测程序中由于内存分配不当导致的内存泄露-Custom implementation of dynamic memory allocation functions, the program can be detected due to improper memory allocation memory leaks
  3. 所属分类:software engineering

    • 发布日期:2017-04-15
    • 文件大小:6815
    • 提供者:zhao
  1. opencv-doc

    0下载:
  2. 图像数据操作(内存分配与释放,图像复制、设定和转换) 图像/视频的输入输出(支持文件或摄像头的输入,图像/视频文件的输出) 矩阵/向量数据操作及线性代数运算(矩阵乘积、矩阵方程求解、特征值、奇异值分解) 支持多种动态数据结构(链表、队列、数据集、树、图) 基本图像处理(去噪、边缘检测、角点检测、采样与插值、色彩变换、形态学处理、直方图、图像金字塔结构) 结构分析(连通域/分支、轮廓处理、距离转换、图像矩、模板匹配、霍夫变换、多项式逼近、曲线拟合、椭圆拟合、狄劳尼三角化)
  3. 所属分类:software engineering

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