📄 gloable.h
字号:
#ifndef GLOABLE_H_
#define GLOABLE_H_
#include "math.h"
#include <string.h>
#include "iostream.h"
#include "stdio.h"
#include "stdlib.h"
#include "DataType.h"
#define INT_MAXVALUE (1<<31-1)
extern double log2(double fValue);
extern int ceilfloor(double x);
template <class T>
extern void InitializeArray(T *pArray,int n, T & value)
{
int i;
for (i=0;i<n;i++)
pArray[i]=value;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -