代码搜索:alloc

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

代码结果 10,000
www.eeworm.com/read/296116/8120383

txt c语言库函数(s类字母) - 1.txt

函数名: sbrk 功 能: 改变数据段空间位置 用 法: char *sbrk(int incr); 程序例: #include #include int main(void) { printf("Changing allocation with sbrk()\n"); prin
www.eeworm.com/read/295841/8137553

c ship.c

# include # include "13h.h" # include # include # include "timer.h" # include # include struct stBOMB { int x; int y; BOOL Use
www.eeworm.com/read/333676/12666145

txt c2三次样条插值.txt

#include #include #include zhuiganfa(n,a,b,c,f,x) int n; double *a,*b,*c,*f,*x; { int i; double *B,*y; B=malloc(n*sizeof(double)); y=mall
www.eeworm.com/read/144708/12775515

c heapwalk.c

#include #include void main(void) { char *buffer1, *buffer2, *buffer3; struct heapinfo node = { NULL, 0, 0}; buffer1 = malloc(100); buffer2 = malloc(200);
www.eeworm.com/read/245187/12811955

c heapwalk.c

#include #include void main(void) { char *buffer1, *buffer2, *buffer3; struct heapinfo node = { NULL, 0, 0}; buffer1 = malloc(100); buffer2 = malloc(200);
www.eeworm.com/read/143472/12873112

c ship.c

# include # include "13h.h" # include # include # include "timer.h" # include # include struct stBOMB { int x; int y; BOOL Use
www.eeworm.com/read/141545/13001836

c deltree.c

#include #include #include #include #include #include void main(int argc, char **argv) { void delete_tree(void); char buff
www.eeworm.com/read/141545/13003765

c heapwalk.c

#include #include void main(void) { char *buffer1, *buffer2, *buffer3; struct heapinfo node = { NULL, 0, 0}; buffer1 = malloc(100); buffer2 = malloc(200);
www.eeworm.com/read/326893/13110530

c heapwalk.c

#include #include void main(void) { char *buffer1, *buffer2, *buffer3; struct heapinfo node = { NULL, 0, 0}; buffer1 = malloc(100); buffer2 = malloc(200);
www.eeworm.com/read/324523/13259739

txt 顺序查找.txt

#include #include int Search_Sq(int a[],int n, int key) { int i; a[0]=key; for(i=n;a[i]!=key;i--); return i; } void CreatSearchTable(int a[],int n) { int i; pri