計算機網絡——RIP協議距離向量算法

#include<iostream> #include<ctime> #include<algorithm> using namespace std; bool Rout[12]; struct Net { int d, nextR; Net() {//構造函數:初始距離爲17不存在,且沒有下一跳 d = 17; nextR = -1; } }; struct Router {//路由
相關文章
相關標籤/搜索