routealgo.h
来自「it is very important」· C头文件 代码 · 共 22 行
H
22 行
// Generic helpers (all routing algorithms)// George F. Riley, Georgia Tech, Winter 2000#ifndef __ROUTEALGO_H__#define __ROUTEALGO_H__#include "rnode.h"// Print the route, given source s, destination d and predecessor vector predvoid PrintRoute( nodeid_t s, nodeid_t d, RoutingVec_t& pred);// Create the NixVectorvoid NixRoute( nodeid_t s, nodeid_t d, RoutingVec_t& pred, RNodeVec_t& nodes, NixVec& nv);// Print the parent list (debug)void PrintParents(RoutingVec_t& pred);// Print the route from the nixvector (debug)void PrintNix(nodeid_t s, RNodeVec_t nodes, NixVec& nv);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?