📄 linear.h
字号:
#pragma once
class Linear
{
public:
Linear(void);
virtual ~Linear(void);
bool IsLinear();
Linear(int **m1,int a,int b);
void Inital(int **m,int a, int b);
int MinD();
protected:
bool Find(int *m);
public:
int **num;//a pointer to document the bases of the linear group;
int n;//the y-scale of the group;
int m;// the x-scale of the group;
};
//int *operator+(int *t1,int *t2);
//int operator-(int *t1,int *t2);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -