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

📄 graphnode.h

📁 bayes network 的分三角形的算法
💻 H
字号:
#pragma once

#include <string>
#include "SimpleList.h"

using namespace std;

class GraphNode
{
public:
	GraphNode(void);
	GraphNode(const GraphNode &gn);
	~GraphNode(void);
	GraphNode operator=(const GraphNode &gn);

	int ID;	//节点id
	string name;	//节点名称
	int weight;	//节点权重,即该节点的元素个数
	SimpleList<int> values;	//对应元素的值
	SimpleList<int> parentID;	//该节点的直接父节点
};

⌨️ 快捷键说明

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