📄 alloc_util.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -