CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 内存动态分配

搜索资源列表

  1. Simulate_Allocate_Memory_Implement_by_C

    0下载:
  2. 模拟内存分配的c语言实现 六、 实验目的 了解用户程序分配内存以及回收所用内存的过程,加深对操作系统存储管理机制的理解。 七、 实验内容 采用首次适应法、最佳适应法或最差适应法,编写一内存分配和回收模拟程序。 (提示:“内存空闲区”数组的设置原理类似于实验一。动态地随机产生新的“内存分配”或“内存回收”请求,再按照你选定的分配算法修改这个数组。由于这个实验的重点在于内存分配,所以不考虑与某内存区相关的进程情况。) -simulation memory allocation
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3617
    • 提供者:丘方
  1. FIFOandLRUarithmetic

    0下载:
  2. 最佳页面置换算法,FIFO,LRU的仿真。页面调用和置换过程有动态显示。内存分配页面数目和页面引用串的长度可以进行人工交互输入。 -best pages replacement algorithm, FIFO, the LRU simulation. Page calls and replacement process is dynamic display. Memory allocation of the number of pages and pages cited the lengt
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6683
    • 提供者:刘利辉
  1. Memory2(new)

    0下载:
  2. 模拟64M的内存的动态管理,包括分配.回收.操作系统实验课程设计题目-64M simulation of the dynamic memory management, including the allocation. Recovery. OS experimental curriculum design topics
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:4130
    • 提供者:王树刚
  1. CMatrixClass

    0下载:
  2. 1.内存管理一律根据实际需要的大小在堆中动态分配内存。 2.边界检查。如果数组下标超越了数组大小界限,会给出警告信息,可以防止非法内存访问以及方便程序的调试。 3.重载了+,-,*,+=,-=,数乘等常见运算符; 4.可以保存数组为二进制数据文件和文本文件两种形式,也可以从二进制数据文件和文本文件读取数据到数组。 5.实现了和矩阵相关的线性代数方程组求解算法。一是高斯选主元消去法二是针对三对角矩阵的追赶法。 6.静态函数Bspline3():3次
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9779
    • 提供者:紫罗兰
  1. auto_allocate

    0下载:
  2. 纯c下一般用链表实现内存的动态分配,有点麻烦,而且容易出错,为了方便实用,这里尝试写了一个在用c写的动态分配内存的console程序,例子实现的是可以动态分配二维数组的大小。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6010
    • 提供者:彦竹
  1. MCB

    0下载:
  2. 实现动态分区内存管理: 1.数据结构、分配算法设计 2.加深对动态分区存储管理方式及其实现过程的理解。 -Dynamic partition memory management: 1. Data structure, distribution algorithm 2. Better memory management for dynamic partitions and its realization process of understanding.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1958567
    • 提供者:jim
  1. myString

    0下载:
  2. 自己编写的String类,可以用于代替<string>中的string类。支持==、!=、<、>等比较运算符,=复制运算符,有多种构造函数,动态分配内存,长度可变。容易转换成char*类型,而且使用深拷贝,指针使用得当。有常用的Index,Insert,Delete,Replace,SubString方法。而且源码中给出了String类的一个小应用。开发环境Visual C++ 6.0,测试程序为Console模式。-I have written the String c
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:15476
    • 提供者:billsedison
  1. os5

    0下载:
  2. 设可供分配的内存储器为1MB(1000KB),内存分配采用动态分区分配策略,分区分配的数据结构为空闲分区链,分配算法采用首次适应算法(FF) 系统仅有一个CPU;作业提交时申明需要的CPU时间和内存大小(以KB为单位)。-Located within the memory available for allocation to 1MB (1000KB), memory allocation dynamic partition allocation strategies, area distrib
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3259
    • 提供者:yilijuan
  1. MyOOCFwV1_0

    0下载:
  2. 使用C语言时,经常需要调用malloc()和free()函数来进行动态内存的分配和回收。有些时候,程序员可能会忘记回收分配的动态内存。为了解决这个问题,这里设计了一个代替malloc()和free()函数的数据结构(或者类)——ObjectManager。ObjectManager中提供了objmgr_malloc()和objmgr_free()以及objmgr_show_mem_info()函数。objmgr_malloc()函数负责按字节总数动态分配内存并且予以记录,objmgr_free(
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:17378
    • 提供者:
  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. variable_distribution

    0下载:
  2. 采用最佳适配算法实验动态分区分配过程alloc()和回收过程recover()。其中,空闲分区通过空闲分区链来管理;在进行内存分配时,系统优先使用空闲区低端的空间-Experimental best fit algorithm using the dynamic partition allocation process alloc () and the recovery process recover (). Among them, free partition management throu
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:508510
    • 提供者:luguifang
  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. 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. 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. 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. lmalloc

    0下载:
  2. 用C语言实现malloc的内存动态分配与释放。-Using C language malloc memory allocation and release dynamic.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:4230
    • 提供者:辽湘
  1. table_maloc

    0下载:
  2. 数据结构,目录法,模拟malloc函数,实现内存动态分配-my_malloc in C
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:948
    • 提供者:chen
  1. list_malloc

    0下载:
  2. 链表法,实现内存动态分配,模拟malloc函数-my_malloc_list in C
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1448
    • 提供者:chen
  1. List

    0下载:
  2. 数据结构的核心一定要学好链表,链表的是用动态分配内存的方式,在节点之间进行操作的,本程序主要由链表的初始化,增删查改等功能。-Core data structure must learn the list, the list is dynamically allocates memory between nodes operate, the program mainly by the initialization list of additions and deletions to change
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2034
    • 提供者:金彪
« 12 »
搜珍网 www.dssz.com