linear.h

来自「自己编的一个线性码的类。可以添加到需要的工程中。」· C头文件 代码 · 共 24 行

H
24
字号
#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 + =
减小字号Ctrl + -
显示快捷键?