搜索资源列表

  1. a1230

    0下载:
  2. 一个C程序,用char *malloc(unsigned size)函数向系统申请一次内存空间-a C program, char* malloc (unsigned size) function to the system for a memory space
  3. 所属分类:C#编程

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:liutao
  1. FLOYDsuanfa

    0下载:
  2. #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5-#include "stdio.h"#include "math.h"#include "malloc.h"#include "string.h"#define m 6#define
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:3072
    • 提供者:jiangshan
  1. huowuyunshudeyichuansuanfa

    0下载:
  2. #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5-#include "stdio.h"#include "math.h"#include "malloc.h"#include "string.h"#define m 6#define
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:108544
    • 提供者:jiangshan
  1. lingjiancanshushejichengxu

    0下载:
  2. #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5-#include "stdio.h"#include "math.h"#include "malloc.h"#include "string.h"#define m 6#define
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-13
    • 文件大小:53248
    • 提供者:jiangshan
  1. rengongshenjingwangluodesuanfa

    0下载:
  2. #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5-#include "stdio.h"#include "math.h"#include "malloc.h"#include "string.h"#define m 6#define
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-13
    • 文件大小:1679360
    • 提供者:jiangshan
  1. VirtualMemAlloc

    0下载:
  2. 所属分类:其他小程序

    • 发布日期:2024-05-13
    • 文件大小:1897472
    • 提供者:黄石
  1. DBServer

    0下载:
  2. * Function: * 1. Replace the first oldstr with newstr in srcstr * Arguments: * IN : * srcstr * oldstr * newstr * OUT : * srcstr * Return: * 1. If find and replace one oldstr with newstr i
  3. 所属分类:其他小程序

    • 发布日期:2024-05-13
    • 文件大小:2048
    • 提供者:阿健
  1. 332658

    0下载:
  2. #include <stdio.h> #include <string.h> #include <stdlib.h> #include <malloc.h> #include <math.h> #include <conio.h> struct DuLNode{ struct DuLNode *prior int data
  3. 所属分类:其他小程序

    • 发布日期:2024-05-13
    • 文件大小:3072
    • 提供者:黄宇
  1. ArrayMalloc

    0下载:
  2. 用VC实现了动态数组分配的 包括所有源代码-with VC dynamic array allocation, including all source code
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-13
    • 文件大小:171008
    • 提供者:陈天胜
  1. bget

    0下载:
  2. 一个简单实用的内存管理程序,可以完成malloc/free功能。-a simple and practical memory management procedures to be completed malloc/free function.
  3. 所属分类:嵌入式/单片机编程

    • 发布日期:2024-05-13
    • 文件大小:5120
    • 提供者:李明
  1. xianxingbiao

    0下载:
  2. 实习题 [问题描述] 1. 设顺序表中的数据元素递增有序,将插入到顺序表的适当位置上,是该表仍然有序。 [输入] 初始顺序表,插入字符。 [输出] 插入x后线性表的结果 [存储结构] 采用顺序存储结构 [算法的基本思想] 建立一个递增顺序表,插入一个数值并移动元素,使其仍然有序。 程序如下: #include "iostream.h" #include <malloc.h>
  3. 所属分类:软件工程

    • 发布日期:2024-05-13
    • 文件大小:8192
    • 提供者:Demonic
  1. shu

    0下载:
  2. 1.[问题描述] 编写递归算法,计算二叉树中叶子结点的数目 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g . [输出] 按中序序列输出,输出的结果为;dbheaficg并计算出二叉树中叶子结点的数目为4 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,中序遍历二叉树时,先遍厉
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:8192
    • 提供者:Demonic
  1. shu2

    0下载:
  2. 2.[问题描述] 编写递归算法,在二叉树中求位于先序序列中第K个位置的结点 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g 。输入要求的位置 [输出] 若二叉树不空,按先序序列输出,求出所求位置的结点 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,先序遍历二叉树时,先遍厉
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:7168
    • 提供者:Demonic
  1. c_malloc

    0下载:
  2. c语言进阶编程的源码,跟操作系统底层相关,非常好,配合我上传的教程使用-c Advanced programming language source code, associated with the underlying operating system, very good, with the tutorial I used to upload
  3. 所属分类:其他小程序

    • 发布日期:2024-05-13
    • 文件大小:147456
    • 提供者:杨光
  1. linklistnode(c)

    0下载:
  2. 此系统主要是演示数据结构中的单链表,仅供学习,交流之用,通过学习可以看到局部变量,全局变量,数据结构,算法的有机结合.在win-tc下可直接运行,在某些Troubc c下需要将malloc.h改为alloc.h-This system is mainly demonstration of a single data structure linked list, for learning, exchange of use, by lear
  3. 所属分类:系统编程

    • 发布日期:2024-05-13
    • 文件大小:8192
    • 提供者:杨业春
  1. ylib90

    0下载:
  2. 一个类STL的多平台可移植的算法容器库,主要用于嵌入式系统编程时的内存管理等方面,尤其是缺少支持malloc 和free的情况下。-STL a class of multi-platform portable containers algorithm library, mainly used in embedded systems programming, such as memory management, in particular
  3. 所属分类:嵌入式/单片机编程

    • 发布日期:2024-05-13
    • 文件大小:674816
    • 提供者:su
  1. c

    0下载:
  2. #include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h> #include<io.h> #include<math.h> #include<process.h> #include<conio.h> #define m
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:2048
    • 提供者:全文
  1. neicunfeipei

    2下载:
  2. 编写一个C程序,用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用循环首次适应法 addr = (char *)lmalloc(unsigned size) 和 lfree(unsigned size,char * addr)模拟可变分区内存管理,实现对该内存区的分配和释放管理。-The preparation of a C program, u
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-13
    • 文件大小:2048
    • 提供者:fy
  1. debugging_malloc

    0下载:
  2. 编写标准函数的包装模块解决内存漏洞问题 通常的malloc和free代码是不允许调用者存在错误的,比如说在程序引用越界、忘记释放内存块,或将一个内存块释放了两次,这些错误通常不会立即影响程序的执行,但当程序用到错误的内存时,已分配的内存过多时,程序就会开始不正常,用程序跟踪调试检查错误出现的地方会很困难。 本次实验的任务就是为malloc和free写一个包装模块,使用这个模块可以发现代码中的上述错误。-The preparati
  3. 所属分类:系统编程

    • 发布日期:2024-05-13
    • 文件大小:307200
    • 提供者:js
  1. lab

    0下载:
  2. ssd6的终极答案大家快下阿,不下就没了-ssd6 the ultimate answer to everyone soon Ah, no more than a
  3. 所属分类:按钮控件

    • 发布日期:2024-05-13
    • 文件大小:4628480
    • 提供者:dusong
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 19 »

源码中国 www.ymcn.org