Sovling TSP problem with the method of Branch and Bound
先通过BranchAndBound(int VertexNum, int EdgeNum, vector initEdge)初始化该类
其中VertexNum为节点数目,EdgeNum为边的数目,initEdge为所有边组成的向量
注意边的编号从0开始,节点的编号也是从0开始
getHLoopLength()返回最短H回路的大小
FinalHLoop[0]--FinalHLoop[VertexNum]中存储着最短哈密顿回路中各边的编号
通过printFinalResult()即可打印结果