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

搜索资源列表

  1. C

    0下载:
  2. 用C编写的有限元小程序 C Programs - 所有的C programs 都进行了编译,并在ANSI C 中进行了测试 - 在所申明的数组中,采用了动态内存分配 -FEM with C small program written in C Programs- All C programs have been compiled and tested in ANSI C- stated in the array, using dynamic memory allocat
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:70297
    • 提供者:huanghai
  1. CplusplusPrimerPlus

    0下载:
  2. 作 者:[美]普拉塔(Prata,S.) 著 全书分17章和10个附录,分别介绍了C++程序的运行方式、基本数据类型、复合数据类型、循环和关系表达式、分支语句和逻辑操作符、函数重载和函数模板、内存模型和名称空间、类的设计和使用、多态、虚函数、动态内存分配、继承、代码重用、友元、异常处理技术、string类和标准模板库、输入/输出等内容。-Author: [United States] Puerto Plata (Prata, S.) the book is divided into 17 c
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-20
    • 文件大小:5723486
    • 提供者:徐可欣
  1. 2010110

    1下载:
  2. 1. 用类编写并测试3×3矩阵转置函数,并且使用数组保存转置后的矩阵,要求使用动态内存分配方法。P206,例题6-5,6-17,6-26,27-1. Written and tested with a class of 3 × 3 matrix transpose function, and after using the array containing the transposed matrix, requires the use of dynamic memory allocation.
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1915317
    • 提供者:小蔡
  1. AdvancedCLanguageSourceProgram

    1下载:
  2. C语言高级程序的源代码示例,包括动态内存分配、文件操作、双机通讯、菜单、鼠标控制、C/S、窗口等等源代码。-advanced C language source program,many advanced C language example.
  3. 所属分类:File Operate

    • 发布日期:2017-04-05
    • 文件大小:705194
    • 提供者:风云
  1. cPP

    0下载:
  2. Fibonacci数列 为数组分配一动态内存并将首地址赋给指针变量p //求整数,长整数,双精度数的二次方根 //百钱问题-Fibonacci numbers as an array of dynamic memory allocation of a pointer variable and assign the address of the first p// find integer, long integer, double the number of secondary ro
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1156
    • 提供者:
  1. TrapCAD

    0下载:
  2. VC++屏蔽Windows热启键(Ctrl+Alt+Del)程序,实现动态禁用/启用Window NT/2000/XP的Ctr+Alt+Del组合键,在远程线程分配内存来存放参数。测试发现,本程序在XP下运行好像有点问题,容易导致电脑重启,特别是在勾选选框的时候,大家请注意。 -Windows VC++ hot start button mask (Ctrl+ Alt+ Del) program, dynamic disable/enable Window NT/2000/XP the Ct
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:23404
    • 提供者:madud00044
  1. MFC_Array_Tutorial

    0下载:
  2. 一个使用MFC的VC++数组类代码,大家都知道,MFC的数组类可以存放任何数据类型,C++的常规数组在使用前必须将其定义成能够容纳所有可能需要的元素,而MFC数组类创建的对象可以根据需要动态地增大或减小,数组的起始下标是0,而上限可以是固定的,也可以随着元素的增加而增加,数组在内存中的地址仍然是连续分配的,希望通过我这个程序示例让你对基于MFC的数组类有一个更好的理解,教您学会使用这种数组类。 -One using MFC in VC++ array class code, and we
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:11185
    • 提供者:madud00082
  1. dynamicPar

    0下载:
  2. 操作系统使用 动态内存分配 可以运行 vs2010-Operating system uses dynamic memory allocation
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-06
    • 文件大小:1178328
    • 提供者:状仔
  1. unix

    0下载:
  2. ,内 置内存分配模块,强大的动态加载及优良的扩充性不失为一个优秀的 GUI 介面.更多的详细功能 与讯息请参阅档案内附的 GUI 编程指南.PDF -, Built-in memory allocation module, a powerful dynamic loading and excellent scalability would be a good GUI interface. More detailed information, please see the file functio
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-23
    • 文件大小:252210
    • 提供者:dsgsd
  1. DTassign

    0下载:
  2. 简单完成计算机的动态内存分配功能,利用链表结点存储内存,实现了最佳适应算法,最坏算法,首次适应算法,循环适应算法和紧凑算法。-Simply complete the function of the computer' s dynamic memory allocation, linked list of nodes using storage memory, to achieve the best fit algorithm, the worst algorithm, the first
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4878
    • 提供者:冰与火
  1. OSexperience7

    1下载:
  2. 设计程序模拟内存的动态分区法存储管理。 内存空闲区使用自由链管理,采用最坏适应算法从自由链中寻找空闲区进行分配。 假定系统的内存共640K,初始状态为操作系统本身占用64K。 t1时间后,有作业A、B、C、D分别请求8K、16K、64K、124K的内存空间; t2时间后,作业C完成; t3时间后,作业E请求50K的内存空间; t4时间后,作业D完成。 要求编程序分别输出t1、t2、t3、t4时刻内存的空闲区的状态。 -Design program to si
  3. 所属分类:Windows Develop

    • 发布日期:2014-04-26
    • 文件大小:1024
    • 提供者:
  1. Memory-management2

    0下载:
  2. 利用位示图的方法来模拟显示计算机工作时动态用分页式方法来为进程分配和回收内存空间-The use of digital map display method to display a computer simulation of the dynamic at work with tabbed approach for the process memory space allocation and recycling
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:1336
    • 提供者:田坤
  1. Memory-management

    0下载:
  2. 利用位示图的方法来模拟显示计算机工作时动态用分页式方法来为进程分配和回收内存空间的另一种代码-The use of digital map display method to display a computer simulation of the dynamic at work with tabbed approach for the process memory space allocation and recycling
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1624
    • 提供者:田坤
  1. 4

    0下载:
  2. 字符串数据的组织和处理 标准C++库的使用。 指针的使用方法。 通过debug观察指针约内容及其所指的对象的内容。 通过动态内存分配实现动念数组,并体会指针在其中的作用 -String data organization and processing of standard C++ libraries use. Pointer is used. Observation about the contents of the debug pointer and the conten
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:5768
    • 提供者:dfaga
  1. dynamiccash123

    0下载:
  2. 应用动态内存的字符串类定义 有助于对类与对象 动态内存分配的理解-Application of dynamic memory the string class contribute to the definition of classes and objects to understand the dynamic memory allocation
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:581669
    • 提供者:孙敯
  1. FFT-Algorithm

    1下载:
  2. 本例通过VC实现二维快速傅里叶变换,涉及到进行矩阵、复数等数学运算,运用了C语言动态内存分配、文件操作、结构指针的函数调用等内容。-In this case through the VC to achieve two-dimensional fast Fourier transform, related to the matrix, such as complex mathematics, use the C language, dynamic memory allocation, file o
  3. 所属分类:Algorithm

    • 发布日期:2014-04-16
    • 文件大小:2048
    • 提供者:lu
  1. sort

    0下载:
  2. 编写一个C编程,实现这样的功能:从键盘输入任意个整数,以0作为结束标志,对这个整数序列从小到大排序,并输出排序后的结果。 题目分析:在这里应用链表作为数据的存储结构。因为链表的存储空间是分配在系统的动态存储区的,因此可以在程序执行时动态的分配内存。这样就可以轻松的解决动态的数列访问问题。-Write a C program, to achieve this functionality: any integer from the keyboard, with 0 as the end mark
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:951
    • 提供者:小陈
  1. zhanghua

    0下载:
  2. 改程序采用C++语言实现首次适应算法和最佳适应算法的动态分区分配过程alloc()和回收过程free()。其中,空闲分区通过空闲分区链表来管理,在进行内存分配时,系统优先使用空闲区低端的空间。-The program uses the C++ language for the first time to adapt to the dynamic algorithm and the best-fit algorithm partition process alloc () and recovery
  3. 所属分类:Data structs

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

    0下载:
  2. 完成内存的动态管理过程,包括分配、回收和碎片移动的功能。能够动态增加作业-Dynamic memory management process, including the function of distribution, recovery and debris moving. The ability to dynamically increase operational
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:3576
    • 提供者:泡泡猪
  1. apr-doc

    0下载:
  2. apr-doc.CHM 开发指南 这里是一个所有模块的列表: Apache的可携性运行时库 平台定义 内部内存分配 原子操作 动态对象处理 为manupulating环境的功能 错误代码 年利率错误空间 年利率误差值 状态值测试 文件信息 文件权限标志 统计功能 目录操作函数 文件路径操作功能 文件的I / O处理功能 文件打开标志/套路 文件寻求旗 文件属性标志 {_full}最大iovec的大小 文
  3. 所属分类:Web Server

    • 发布日期:2017-03-29
    • 文件大小:317982
    • 提供者:kaka
« 1 2 ... 7 8 9 10 11 1213 14 15 »
搜珍网 www.dssz.com