⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 http:^^www.cis.ksu.edu^~singh^cis725^olec10

📁 This data set contains WWW-pages collected from computer science departments of various universities
💻 EDU^~SINGH^CIS725^OLEC10
字号:
Date: Tue, 14 Jan 1997 23:00:32 GMT
Server: NCSA/1.5.2
Last-modified: Wed, 25 Sep 1996 21:36:10 GMT
Content-type: text/plain
Content-length: 1370

 Routing  - processing nodes (hosts)  - switches  - communication links  Datagram routing   *  each packet is routing independently    *  unordered, unreliableVirtual Circuit routing   *  set up a path for each connection   *  all messages are sent over this path    *  ordered, reliableSource Routing   *   entire route is determined at the source  *   message carries the route   Routing table   -  next hop information       At each node i,         for each destination, what is the next hop  Routing Algorithms      - network as a graph            - each edge has a weight Shortest path tree           b ----------d         /|      2    |       2/ |           |       /  |           |      a   | 1         | 1       \  |           |       3\ |           |         \|     2     |	  c---------- e     - tree per destination  A simple protocol: Sink:    distance_sink = 0; parent_sink = sink    send M(0) to all neighbors;    do       receive M(x) from any neighbor j --> skip      od Any other node i:      distance_i  = infinity;     do        receive M(x) from any neighbor j -->                    if x + weight(i,j) < distance_i		     then  distance_i = x + weight(i,j); parent_i := j		           send M(distance_i) to all neighbors except j    od Problems: number of messages

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -