alloc_util.h
来自「混合高斯模型的C++程序」· C头文件 代码 · 共 20 行
H
20 行
#ifndef ALLOC_UTIL_H#define ALLOC_UTIL_Hchar *G_malloc(int n);char *G_calloc(int n,int m);char *G_realloc(char *b,int n);void G_dealloc(char *b);double *G_alloc_vector(int n);double **G_alloc_matrix(int rows,int cols);void G_free_vector(double *v);void G_free_matrix(double **m);int *G_alloc_ivector(int n);int **G_alloc_imatrix(int rows,int cols);void G_free_ivector(int *v);void G_free_imatrix(int **m);#endif /* ALLOC_UTIL_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?