加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bellmanmark.cpp 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
ZzqiZQute 提交于 2018-06-25 21:36 . 20186252136
#include "bellmanmark.h"
#include "common.h"
BellmanMark::BellmanMark(int count)
{
this->count=count;
d=new double[count+1];
p=new int[count+1];
vertex=new QList<int>();
reset();
}
BellmanMark::~BellmanMark(){
delete d;
delete p;
}
double BellmanMark::getD(int pos){
if(pos>=1&&pos<=count)
return *(d+pos);
return ERROR_CODE;
}
int BellmanMark::getP(int pos){
if(pos>=1&&pos<=count)
return *(p+pos);
return ERROR_CODE;
}
void BellmanMark::setD(int pos, double val){
if(pos>=1&&pos<=count)
*(d+pos)=val;
}
void BellmanMark::setP(int pos,int val){
if(pos>=1&&pos<=count)
*(p+pos)=val;
}
int BellmanMark::getCount() const
{
return count;
}
void BellmanMark::addVertex(int i){
vertex->push_back(i);
}
bool BellmanMark::findVertex(int i){
for(auto it=vertex->begin();it!=vertex->end();it++){
if(*it==i){
return true;
}
}
return false;
}
bool BellmanMark::getNegaCircuit() const
{
return negaCircuit;
}
void BellmanMark::setNegaCircuit(bool value)
{
negaCircuit = value;
}
void BellmanMark::reset()
{
vertex->clear();
negaCircuit=false;
nega=0;
}
QList<int>* BellmanMark::getVertex() const
{
return vertex;
}
int BellmanMark::getNega() const
{
return nega;
}
void BellmanMark::setNega(int value)
{
nega = value;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化