dfs bfs

实验目的:

了解和掌握深度优先和宽度优先算法的原理以及应用并实现两种算法。

实验内容:

1. 算法原理

首先,我们给定一个二叉树图如下:

 

 

1). 宽度优先搜索:

宽度优先搜索算法(Breadth First Search,BSF),思想是:

· 1.从图中某顶点v出发,首先访问定点v

· 2.在访问了v之后依次访问v的各个未曾访问过的邻接点;

· 3.然后分别从这些邻接点出发依次访问它们的邻接点,并使得“先被访问的顶点的邻接点先于后被访问的顶点的邻接点被访问;

· 4.直至图中所有已被访问的顶点的邻接点都被访问到;

· 5.如果此时图中尚有顶点未被访问,则需要另选一个未曾被访问过的顶点作为新的起始点,重复上述过程,直至图中所有顶点都被访问到为止。

换句话说,广度优先搜索遍历图的过程是以v为起点,由近至远,依次访问和v有路径相通且路 径长度为1,2...的顶点。
如上图的BFS访问顺序为:

A->B->C->D->E->F



2). 深度优先搜索:

图的深度优先搜索(Depth First Search, DFS),和树的前序遍历非常类似。

它的思想:

1.从顶点v出发,首先访问该顶点;

2.然后依次从它的各个未被访问的邻接点出发深度优先搜索遍历图;

3.直至图中所有和v有路径相通的顶点都被访问到。

4.若此时尚有其他顶点未被访问到,则另选一个未被访问的顶点作起始点,重复上述过程,直至图中所有顶点都被访问到为止

如上图的BFS访问顺序为:

A->B->D->E->C->F

 

2. 关键代码的编写

1)首先定义一个类,创建一个二叉树图


          
          
          
          
  1. # 首先定义一个创建图的类,使用邻接矩阵
  2. class Graph(object):
  3. def __init__(self, *args, **kwargs):
  4. self.order = [] # visited order
  5. self.neighbor = {}
  6. def add_node(self, node):
  7. key, val = node
  8. if not isinstance(val, list):
  9. print( '节点输入时应该为一个线性表') # 避免不正确的输入
  10. self.neighbor[key] = val

2)宽度优先算法的实现


          
          
          
          
  1. # 宽度优先算法的实现
  2. def BFS(self, root):
  3. #首先判断根节点是否为空节点
  4. if root != None:
  5. search_queue = deque()
  6. search_queue.append(root)
  7. visited = []
  8. else:
  9. print( 'root is None')
  10. return -1
  11. while search_queue:
  12. person = search_queue.popleft()
  13. self.order.append(person)
  14. if ( not person in visited) and (person in self.neighbor.keys()):
  15. search_queue += self.neighbor[person]
  16. visited.append(person)


 

3)深度优先算法的实现


          
          
          
          
  1. # 深度优先算法的实现
  2. def DFS(self, root):
  3. # 首先判断根节点是否为空节点
  4. if root != None:
  5. search_queue = deque()
  6. search_queue.append(root)
  7. visited = []
  8. else:
  9. print( 'root is None')
  10. return -1
  11. while search_queue:
  12. person = search_queue.popleft()
  13. self.order.append(person)
  14. if ( not person in visited) and (person in self.neighbor.keys()):
  15. tmp = self.neighbor[person]
  16. tmp.reverse()
  17. for index in tmp:
  18. search_queue.appendleft(index)
  19. visited.append(person)

 

3.运行结果的展示

 

 

 

 

 

实验过程中遇到的问题如何解决的?

 

1. 遇到的问题

   在本次实验中最大的问题就是对于两个算法的理解和实现吧,比如是迭代还是递归,还是回溯,都是我们值得去思考和理解的。



2. 如何解决

   其实,把严蔚敏的数据结构里面的原理理解清楚了,这两个算法其实不难的,如果这都理解不清楚,就说明数据结构学得很有问题,立即推放弃学计算机。



本次实验的体会(结论)

 

本次实验在很大层度上让我进一步了解了这两种算法的区别和原理,不仅专业课学习上有一定帮助,同时也为考研复习提供了一个很好的复习。

 

 

 

日期:2018-06-12

            

附录:

完整的代码:


     
     
     
     
  1. # -*- coding: utf-8 -*-
  2. # /usr/bin/python
  3. # 作者:郭畅
  4. # 实验日期:20180612
  5. # Python版本:3.6.4
  6. # 主题:基于深度优先和宽度优先的搜索算法的简单实现
  7. # 参考书籍:数据结构C语言版(清华大学出版社严蔚敏版)
  8. from collections import deque # 线性表的模块
  9. # 首先定义一个创建图的类,使用邻接矩阵
  10. class Graph(object):
  11. def __init__(self, *args, **kwargs):
  12. self.order = [] # visited order
  13. self.neighbor = {}
  14. def add_node(self, node):
  15. key, val = node
  16. if not isinstance(val, list):
  17. print( '节点输入时应该为一个线性表') # 避免不正确的输入
  18. self.neighbor[key] = val
  19. # 宽度优先算法的实现
  20. def BFS(self, root):
  21. #首先判断根节点是否为空节点
  22. if root != None:
  23. search_queue = deque()
  24. search_queue.append(root)
  25. visited = []
  26. else:
  27. print( 'root is None')
  28. return -1
  29. while search_queue:
  30. person = search_queue.popleft()
  31. self.order.append(person)
  32. if ( not person in visited) and (person in self.neighbor.keys()):
  33. search_queue += self.neighbor[person]
  34. visited.append(person)
  35. # 深度优先算法的实现
  36. def DFS(self, root):
  37. # 首先判断根节点是否为空节点
  38. if root != None:
  39. search_queue = deque()
  40. search_queue.append(root)
  41. visited = []
  42. else:
  43. print( 'root is None')
  44. return -1
  45. while search_queue:
  46. person = search_queue.popleft()
  47. self.order.append(person)
  48. if ( not person in visited) and (person in self.neighbor.keys()):
  49. tmp = self.neighbor[person]
  50. tmp.reverse()
  51. for index in tmp:
  52. search_queue.appendleft(index)
  53. visited.append(person)
  54. def clear(self):
  55. self.order = []
  56. def node_print(self):
  57. for index in self.order:
  58. print(index, end= ' ')
  59. if __name__ == '__main__':
  60. # 创建一个二叉树图
  61. g = Graph()
  62. g.add_node(( 'A', [ 'B', 'C']))
  63. g.add_node(( 'B', [ 'D', 'E']))
  64. g.add_node(( 'C', [ 'F']))
  65. # 进行宽度优先搜索
  66. g.BFS( 'A')
  67. print( '宽度优先搜索:')
  68. print( ' ', end= ' ')
  69. g.node_print()
  70. g.clear()
  71. # 进行深度优先搜索
  72. print( '\n\n深度优先搜索:')
  73. print( ' ', end= ' ')
  74. g.DFS( 'A')
  75. g.node_print()
  76. print()

你可能感兴趣的:(图论)