⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 linear.h

📁 自己编的一个线性码的类。可以添加到需要的工程中。
💻 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 + -