真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

路由算法代碼java 路由算法dv

網(wǎng)絡(luò)通信問題,用java代碼編寫關(guān)于路由最佳路徑選擇的程序,圖片如下,給報酬也行,跪謝。

你那個文字我看不懂,路由器的路由算法其實就兩類:1、距離矢量算法(如RIP協(xié)議),2、鏈路狀態(tài)協(xié)議(如OSPF協(xié)議)。路由器不一定按最短路徑轉(zhuǎn)發(fā)(如OSPF協(xié)議),還要看他的路徑開銷等參數(shù)。如果你不考慮其他因素,僅考慮最短路徑,可以用Dijistra算法寫。

成都創(chuàng)新互聯(lián)成立十多年來,這條路我們正越走越好,積累了技術(shù)與客戶資源,形成了良好的口碑。為客戶提供成都網(wǎng)站建設(shè)、做網(wǎng)站、網(wǎng)站策劃、網(wǎng)頁設(shè)計、域名與空間、網(wǎng)絡(luò)營銷、VI設(shè)計、網(wǎng)站改版、漏洞修補(bǔ)等服務(wù)。網(wǎng)站是否美觀、功能強(qiáng)大、用戶體驗好、性價比高、打開快等等,這些對于網(wǎng)站建設(shè)都非常重要,成都創(chuàng)新互聯(lián)通過對建站技術(shù)性的掌握、對創(chuàng)意設(shè)計的研究為客戶提供一站式互聯(lián)網(wǎng)解決方案,攜手廣大客戶,共同發(fā)展進(jìn)步。

java 最短路徑算法 如何實現(xiàn)有向 任意兩點的最短路徑

Dijkstra(迪杰斯特拉)算法是典型的最短路徑路由算法,用于計算一個節(jié)點到其他所有節(jié)點的最短路徑。主要特點是以起始點為中心向外層層擴(kuò)展,直到擴(kuò)展到終點為止。

Dijkstra一般的表述通常有兩種方式,一種用永久和臨時標(biāo)號方式,一種是用OPEN, CLOSE表方式

用OPEN,CLOSE表的方式,其采用的是貪心法的算法策略,大概過程如下:

1.聲明兩個集合,open和close,open用于存儲未遍歷的節(jié)點,close用來存儲已遍歷的節(jié)點

2.初始階段,將初始節(jié)點放入close,其他所有節(jié)點放入open

3.以初始節(jié)點為中心向外一層層遍歷,獲取離指定節(jié)點最近的子節(jié)點放入close并從新計算路徑,直至close包含所有子節(jié)點

代碼實例如下:

Node對象用于封裝節(jié)點信息,包括名字和子節(jié)點

[java] view plain copy

public class Node {

private String name;

private MapNode,Integer child=new HashMapNode,Integer();

public Node(String name){

this.name=name;

}

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public MapNode, Integer getChild() {

return child;

}

public void setChild(MapNode, Integer child) {

this.child = child;

}

}

MapBuilder用于初始化數(shù)據(jù)源,返回圖的起始節(jié)點

[java] view plain copy

public class MapBuilder {

public Node build(SetNode open, SetNode close){

Node nodeA=new Node("A");

Node nodeB=new Node("B");

Node nodeC=new Node("C");

Node nodeD=new Node("D");

Node nodeE=new Node("E");

Node nodeF=new Node("F");

Node nodeG=new Node("G");

Node nodeH=new Node("H");

nodeA.getChild().put(nodeB, 1);

nodeA.getChild().put(nodeC, 1);

nodeA.getChild().put(nodeD, 4);

nodeA.getChild().put(nodeG, 5);

nodeA.getChild().put(nodeF, 2);

nodeB.getChild().put(nodeA, 1);

nodeB.getChild().put(nodeF, 2);

nodeB.getChild().put(nodeH, 4);

nodeC.getChild().put(nodeA, 1);

nodeC.getChild().put(nodeG, 3);

nodeD.getChild().put(nodeA, 4);

nodeD.getChild().put(nodeE, 1);

nodeE.getChild().put(nodeD, 1);

nodeE.getChild().put(nodeF, 1);

nodeF.getChild().put(nodeE, 1);

nodeF.getChild().put(nodeB, 2);

nodeF.getChild().put(nodeA, 2);

nodeG.getChild().put(nodeC, 3);

nodeG.getChild().put(nodeA, 5);

nodeG.getChild().put(nodeH, 1);

nodeH.getChild().put(nodeB, 4);

nodeH.getChild().put(nodeG, 1);

open.add(nodeB);

open.add(nodeC);

open.add(nodeD);

open.add(nodeE);

open.add(nodeF);

open.add(nodeG);

open.add(nodeH);

close.add(nodeA);

return nodeA;

}

}

圖的結(jié)構(gòu)如下圖所示:

Dijkstra對象用于計算起始節(jié)點到所有其他節(jié)點的最短路徑

[java] view plain copy

public class Dijkstra {

SetNode open=new HashSetNode();

SetNode close=new HashSetNode();

MapString,Integer path=new HashMapString,Integer();//封裝路徑距離

MapString,String pathInfo=new HashMapString,String();//封裝路徑信息

public Node init(){

//初始路徑,因沒有A-E這條路徑,所以path(E)設(shè)置為Integer.MAX_VALUE

path.put("B", 1);

pathInfo.put("B", "A-B");

path.put("C", 1);

pathInfo.put("C", "A-C");

path.put("D", 4);

pathInfo.put("D", "A-D");

path.put("E", Integer.MAX_VALUE);

pathInfo.put("E", "A");

path.put("F", 2);

pathInfo.put("F", "A-F");

path.put("G", 5);

pathInfo.put("G", "A-G");

path.put("H", Integer.MAX_VALUE);

pathInfo.put("H", "A");

//將初始節(jié)點放入close,其他節(jié)點放入open

Node start=new MapBuilder().build(open,close);

return start;

}

public void computePath(Node start){

Node nearest=getShortestPath(start);//取距離start節(jié)點最近的子節(jié)點,放入close

if(nearest==null){

return;

}

close.add(nearest);

open.remove(nearest);

MapNode,Integer childs=nearest.getChild();

for(Node child:childs.keySet()){

if(open.contains(child)){//如果子節(jié)點在open中

Integer newCompute=path.get(nearest.getName())+childs.get(child);

if(path.get(child.getName())newCompute){//之前設(shè)置的距離大于新計算出來的距離

path.put(child.getName(), newCompute);

pathInfo.put(child.getName(), pathInfo.get(nearest.getName())+"-"+child.getName());

}

}

}

computePath(start);//重復(fù)執(zhí)行自己,確保所有子節(jié)點被遍歷

computePath(nearest);//向外一層層遞歸,直至所有頂點被遍歷

}

public void printPathInfo(){

SetMap.EntryString, String pathInfos=pathInfo.entrySet();

for(Map.EntryString, String pathInfo:pathInfos){

System.out.println(pathInfo.getKey()+":"+pathInfo.getValue());

}

}

/**

* 獲取與node最近的子節(jié)點

*/

private Node getShortestPath(Node node){

Node res=null;

int minDis=Integer.MAX_VALUE;

MapNode,Integer childs=node.getChild();

for(Node child:childs.keySet()){

if(open.contains(child)){

int distance=childs.get(child);

if(distanceminDis){

minDis=distance;

res=child;

}

}

}

return res;

}

}

Main用于測試Dijkstra對象

[java] view plain copy

public class Main {

public static void main(String[] args) {

Dijkstra test=new Dijkstra();

Node start=test.init();

test.computePath(start);

test.printPathInfo();

}

}

如何拿到路由器上所有的連接設(shè)備的ip用Java代碼實現(xiàn)

瀏覽器進(jìn)入路由器管理地址:192.168.1.1--輸入賬號、密碼進(jìn)入管理界面

2

單擊左側(cè)的【DHCP】--客戶端列表

3

好了,所有設(shè)備的IP地址盡在眼底

END

借助小軟件

上面的方法簡單吧,當(dāng)然你如果手頭有360,也可以這么搞

先打開【家庭網(wǎng)絡(luò)管理】

登錄你的路由器后,單擊【有線、無線設(shè)備】

好了,是不是更加清晰?


當(dāng)前題目:路由算法代碼java 路由算法dv
網(wǎng)頁URL:http://weahome.cn/article/ddosgpd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部