代码搜索:malloc

找到约 10,000 项符合「malloc」的源代码

代码结果 10,000
www.eeworm.com/read/365329/9869105

r name.r

#ifndef NAME_R #define NAME_R /* * Name * maintain a table of Name structures */ struct Name { /* base structure */ const void * type; /* for dynamic linkage */ const char * name; /* may be m
www.eeworm.com/read/364857/9891060

c jmemnobs.c

/* * jmemnobs.c * * Copyright (C) 1992-1996, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying READ
www.eeworm.com/read/167958/9944012

c jmemnobs.c

/* * jmemnobs.c * * Copyright (C) 1992-1996, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying READ
www.eeworm.com/read/363342/9958208

c 单链表2.c

#include #include struct node{ int key; struct node *next; }; void creat_link(struct node *); main() { struct node *head=NULL; creat_li
www.eeworm.com/read/363191/9965682

c rs_encode_file.c

/* Procedures and Programs for Galois-Field Arithmetic and Reed-Solomon Coding. Copyright (C) 2003 James S. Plank This library is free software; you can redistribute it and/or modify it under the t
www.eeworm.com/read/167125/9980252

c 单链表2.c

#include #include struct node{ int key; struct node *next; }; void creat_link(struct node *); main() { struct node *head=NULL; creat_li
www.eeworm.com/read/362558/9992613

h crosslistarray.h

#include #include /*十字链表的结构类型定义如下:*/ typedef struct OLNode { int row,col; /*非零元素的行和列下标*/ ElementType value; struct OLNode *right; /*非零元素所在行表、列表的后继链域*/ struc
www.eeworm.com/read/362558/9992627

c 5.4.c

/*建立稀疏矩阵的十字链表的算法*/ #include "crosslistarray.h" void CreateCrossList(CrossList *M) { int m,n,t; OLNode *p,*q; int i,j,e; /*采用十字链表存储结构,创建稀疏矩阵M*/ printf("输入M的行数,列数和非零元素的个数\n"); scanf("
www.eeworm.com/read/360206/10106463

c fillheap.c

#include #include void main(void) { char *buffer1, *buffer2, *buffer3; int i, state; buffer1 = malloc(100); buffer2 = malloc(200); buffer3 = malloc(300)
www.eeworm.com/read/164293/10119665

c jmemnobs.c

/* * jmemnobs.c * * Copyright (C) 1992-1996, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README fi