-
Notifications
You must be signed in to change notification settings - Fork 0
/
point.h
72 lines (60 loc) · 2.34 KB
/
point.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* BetaCome: betacome of future network routing
*
* Code to accompany the competition:
* huawei software challenge : future network routing,
* Yuanyuan Qin, Song Tang, Meiying Wu, 2016
*
* Copyright (C) 2016 Yuanyuan Qin, Peking University, Shenzhen, China
*
* This file is part of BetaCome.
*
* BetaCome is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* BetaCome is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BetaCome. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef _POINT_H
#define _POINT_H
#include "environment.h"
#include "edge.h"
#include <vector>
using namespace std;
class PathPiece;
class Point
{
friend bool operator<(const Point &lPoint, const Point &rPoint);//比较两个point的大小,sort算法中用到该运算符
public:
Point();
//使用合成拷贝赋值运算符
//bool operator<(const Point &rPoint);//比较两个point的大小,sort算法中用到该运算符
//get value
inline int getPointId() const { return pointId; }
inline int getSccNum() const { return sccNum; }
inline int getTopoOrder() const { return topoOrder; }
inline int getInoutDegree() const { return inoutDegree; }
inline vector<Edge>& getEdgeVector() { return edgeVector; }
//set value
inline void setPointId(int xx) { pointId = xx; }
inline void setSccNum(int xx) { sccNum = xx; }
inline void setTopoOrder(int xx) { topoOrder = xx; }
inline void setInoutDegree(int xx) { inoutDegree = xx; }
inline void insertEdge(Edge &xx){ edgeVector.push_back(xx); }
private:
int pointId = POINT_INVALID;//点的编号,若==POINT_INVALID,表示在输入的图中该点并不存在
int sccNum = INVALID;//id of scc,strongly connected component
int topoOrder = INVALID;//topological order
int inoutDegree = INVALID;//=(indegree + outdegree)>>1
vector<Edge> edgeVector;//从该点出发的边构成的向量
};
bool operator<(const Point &lPoint, const Point &rPoint);//比较两个point的大小,sort算法中用到该运算符
#endif