代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/276181/10758464

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/349837/10797945

cpp algo0209.cpp

Status ListInsert_L(LinkList &L, int i, ElemType e) { // 算法2.9 // 在带头结点的单链线性表L的第i个元素之前插入元素e LinkList p,s; p = L; int j = 0; while (p && j < i-1) { // 寻找第i-1个结点 p = p->next;
www.eeworm.com/read/275574/10811390

txt 一元多项式.cpp.txt

#include #include #define OK 1; #define READ(I) while (((I)=getchar())=='\n'); //读入合法字符 typedef int status; typedef struct PolyNode { float coef; int expn; str
www.eeworm.com/read/273533/10912626

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
www.eeworm.com/read/418695/10935666

c qld.c

/* * QLD.C * * A Matlab MEX interface to Prof. K. Schittkowski's (Univ. of Bayreuth, * Germany) and Prof. M.J.D. Powell's (Univ. of Cambridge, UK) FORTRAN QLD * routine, kindly provided by Prof
www.eeworm.com/read/417462/10988749

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/470729/6907030

cpp render_arena.cpp

/* * Copyright (C) 2003 Apple Computer, Inc. * * Portions are Copyright (C) 1998 Netscape Communications Corporation. * * This library is free software; you can redistribute it and/or * mo
www.eeworm.com/read/470033/6923205

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/470033/6923363

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/129161/7077861

c jmemnobs.c

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