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

📄 pattern.h

📁 vc++ study
💻 H
字号:
// Pattern.h: interface for the CPattern class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PATTERN_H__34C42A34_4600_4887_9DAF_04E72CF5095F__INCLUDED_)
#define AFX_PATTERN_H__34C42A34_4600_4887_9DAF_04E72CF5095F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

struct PatternElement
{
	int num;//一个模式的分量下标
	double Element;//分量值
	struct PatternElement * next;//指向下一个分量的指针
};

class CPattern  : public CObject
{	
public:
	CPattern(int n);
	virtual ~CPattern();
	int N;//模式维数
	struct PatternElement * pPatternElementHead;//指向模式的头指针
public:
	int WhichCenter;//属于哪个聚类中心

};

#endif // !defined(AFX_PATTERN_H__34C42A34_4600_4887_9DAF_04E72CF5095F__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -