代码拉取完成,页面将自动刷新
#ifndef GRAPH_H
#define GRAPH_H
#include <string>
using namespace std;
struct res{
double totalTime, calcTime;
long long ans;
res(){
totalTime = 0;
calcTime = 0;
ans = 0;
}
res(double _totalTime, double _calcTime, long long _ans){
totalTime = _totalTime;
calcTime = _calcTime;
ans = _ans;
}
};
class graph
{
public:
long long* beginPos1;
int* beginPos;
int* edgeList;
int* deg;
int uCount,vCount,breakVertex32,breakVertex10,vertexCount;
long long edgeCount;
void loadgraph(string folderName,int bound);
int* beginPos16;
int s16;
~graph();
};
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。