1 Star 0 Fork 68

lenvon2012/图与网络优化_Qt

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

搜索帮助