allocate.c
来自「R+树的c实现源码」· C语言 代码 · 共 55 行
C
55 行
#include <stdio.h>#include "macros.h"#include "options.h"#include "index.h"#include "global.h"#include "assert.h"/*-----------------------------------------------------------------------------| Space allocation routines. - just keep track of No. of allocations|| Call myalloc() like malloc().| Call myfree() like free().-----------------------------------------------------------------------------*/static int puse=0; vuse=0;static int all = 0;static int maxuse=0;char *myalloc(n)register int n;{ char *malloc(); all++; puse++; if ((puse-vuse) > maxuse) maxuse++; return malloc(n);}myfree(p)char *p;{ all--; vuse++; free(p);}myfreeOFN( p )register struct OverFlowNode *p;{ register struct OverFlowNode *q; while ( p != NULL ) { all --; vuse++; q = p->next2; free(p); p = q; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?