1 Star 0 Fork 68

新无止竞/图与网络优化_Qt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
floydmark.h 735 Bytes
一键复制 编辑 原始数据 按行查看 历史
ZzqiZQute 提交于 2018-06-25 21:36 . 20186252136
#ifndef FLOYDMARK_H
#define FLOYDMARK_H
#include <QList>
class FloydMark
{
public:
FloydMark(int count);
void setP(int x, int y, int val);
void setD(int x, int y, double val);
int getP(int x, int y);
double getD(int x, int y);
int getCount() const;
void reset();
int getFloydStart() const;
void setFloydStart(int value);
QList<int> *getVertex() const;
void addVertex(int i);
bool findVertex(int i);
int getNega() const;
void setNega(int value);
bool getNegaCircuit() const;
void setNegaCircuit(bool value);
private:
double* d;
int* p;
int count;
QList<int>* vertex;
bool negaCircuit;
int nega;
int floydStart;
};
#endif // FLOYDMARK_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/huiwei13/graph_and_network_optimization_qt.git
[email protected]:huiwei13/graph_and_network_optimization_qt.git
huiwei13
graph_and_network_optimization_qt
图与网络优化_Qt
master

搜索帮助