代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/169930/9832639
h memchk.h
#ifndef __MEMCHK_H__
#define __MEMCHK_H__
/*----------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
www.eeworm.com/read/168863/9891191
h stdlib.h
/*--------------------------------------------------------------------------
STDLIB.H
Standard functions.
Copyright (c) 1988-1997 Keil Elektronik GmbH and Keil Software, Inc.
All rights reserved
www.eeworm.com/read/362558/9992368
txt 2_5.txt
void init_linklist(LinkList *l)/*对单链表进行初始化*/
{
*l=(LinkList)malloc(sizeof(Node)); /*申请结点空间*/
(*l)->next=NULL; /*置为空表*/
}
www.eeworm.com/read/161095/10452601
c sp_preorder.c
#include "slu_ddefs.h"
void
sp_preorder(superlu_options_t *options, SuperMatrix *A, int *perm_c,
int *etree, SuperMatrix *AC)
{
/*
* Purpose
* =======
*
* sp_preorder() permutes the column
www.eeworm.com/read/351570/10639575
cpp algo0203.cpp
Status InitList_Sq(SqList &L) { // 算法2.3
// 构造一个空的线性表L。
L.elem = (ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
if (!L.elem) return OK; // 存储分配失败
L.length = 0;
www.eeworm.com/read/349837/10797890
cpp algo0203.cpp
Status InitList_Sq(SqList &L) { // 算法2.3
// 构造一个空的线性表L。
L.elem = (ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
if (!L.elem) return OK; // 存储分配失败
L.length = 0;
www.eeworm.com/read/273174/10924099
h stdlib.h
/*--------------------------------------------------------------------------
STDLIB.H
Standard functions.
Copyright (c) 1988-1997 Keil Elektronik GmbH and Keil Software, Inc.
All rights reserved
www.eeworm.com/read/272018/10974083
c spea2_functions.c
/*========================================================================
PISA (www.tik.ee.ethz.ch/pisa/)
========================================================================
Computer Engi
www.eeworm.com/read/271634/10985901
cpp load_book_massage.cpp
#include"stdio.h"
#include"iostream.h"
#include"book_struct.h"
void create_bookmas(bomas &B);
int load_book_massage(bomas &B)//将图书的信息从文件中读取,B是图书链表的头结点指针
{
bomas p1,p2;
FILE *fp;
create_
www.eeworm.com/read/470102/6924706
c rua_memory.c
#include
#include
#include
#include
//#include
#include "rua_memory.h"
#if 0
#define RUAMEMDBG ENABLE
#else
#defi