当前位置:   article > 正文

广度优先搜索(BFS) C语言实现_bfsc语言实现

bfsc语言实现

伪代码


  1. #define Black 2
  2. #define Gray 1
  3. #define White 0
  4. #define Infinite -1
  5. #define NIL -1
  6. struct map{
  7. int d;
  8. int color;
  9. int parent;
  10. } vertix[100];
  11. void BFS(int a[100][100],int n,int s){
  12. int i,j;
  13. int tmp;
  14. Queue q;
  15. for(i = 0;i<n;i++){
  16. vertix[i].d = Infinite;
  17. vertix[i].color = White;
  18. vertix[i].parent = NIL;
  19. }
  20. vertix[s].color = Gray;
  21. vertix[s].d = 0;
  22. q = CreateQueue(n);
  23. Enqueue(s,q);
  24. while(!IsEmpty(q)){
  25. tmp = FrontAndDequeue(q);
  26. for(i = 0;i<n;i++)
  27. if(a[tmp][i])
  28. if(vertix[i].color == White){
  29. vertix[i].d = vertix[tmp].d + 1;
  30. vertix[i].color = Gray;
  31. vertix[i].parent = tmp;
  32. Enqueue(i,q);
  33. }
  34. vertix[tmp].color = Black;
  35. }
  36. DisposeQueue(q);
  37. }


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/445367
推荐阅读
相关标签
  

闽ICP备14008679号