首页 > 编程 > C# > 正文

C#非递归先序遍历二叉树实例

2019-10-29 21:40:54
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C#非递归先序遍历二叉树的实现方法,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了C#非递归先序遍历二叉树的方法。分享给大家供大家参考。具体如下:

 

 
  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.Linq; 
  4. using System.Text; 
  5. using System.Threading.Tasks; 
  6. namespace ConsoleApplication5 
  7. class Program 
  8. static void Main(string[] args) 
  9. Node treeRoot = CreateTree(); 
  10. scanTree(treeRoot); 
  11. private static void scanTree(Node treeRoot) 
  12. List<Node> list = new List<Node>(); 
  13. list.Add(treeRoot); 
  14. Node point = treeRoot; 
  15. Write(treeRoot); 
  16. while (true
  17. if (!list.Contains(point)) 
  18. //上一轮是移除的操作 
  19. if (treeRoot.leftSon == point) 
  20. {//移除的是左结点 
  21. if (treeRoot.rightSon != null
  22. treeRoot = treeRoot.rightSon; 
  23. list.Add(treeRoot); 
  24. Write(treeRoot); 
  25. point = treeRoot; 
  26. continue
  27. list.Remove(treeRoot); 
  28. if (list.Count == 0) 
  29. break
  30. point = treeRoot; 
  31. treeRoot = list[list.Count - 1]; 
  32. else 
  33. {//移除的是右结点 
  34. list.Remove(treeRoot); 
  35. if (list.Count == 0) 
  36. break
  37. point = treeRoot; 
  38. treeRoot = list[list.Count - 1]; 
  39. continue
  40. if (treeRoot.leftSon != null
  41. treeRoot = treeRoot.leftSon; 
  42. Write(treeRoot); 
  43. list.Add(treeRoot); 
  44. point = treeRoot; 
  45. continue
  46. if (treeRoot.rightSon != null
  47. treeRoot = treeRoot.rightSon; 
  48. Write(treeRoot); 
  49. point = treeRoot; 
  50. list.Add(treeRoot); 
  51. continue
  52. if (treeRoot.leftSon == null && treeRoot.rightSon == null
  53. list.Remove(treeRoot); 
  54. if (list.Count == 0) 
  55. break
  56. point = treeRoot; 
  57. treeRoot = list[list.Count - 1]; 
  58. public static void Write(Node node) 
  59. Console.WriteLine(node.Data); 
  60. private static Node CreateTree() 
  61. Node a = new Node("A"); 
  62. a.leftSon = new Node("B"); 
  63. a.rightSon = new Node("C"); 
  64. a.leftSon.leftSon = new Node("D"); 
  65. a.leftSon.rightSon = new Node("E"); 
  66. a.rightSon.leftSon = new Node("F"); 
  67. a.rightSon.rightSon = new Node("G"); 
  68. a.leftSon.leftSon.leftSon = new Node("H"); 
  69. a.leftSon.leftSon.rightSon = new Node("I"); 
  70. return a; 
  71. class Node 
  72. public string Data { get; set; } 
  73. public Node leftSon { get; set; } 
  74. public Node rightSon { get; set; } 
  75. public Node(string data) 
  76. Data = data; 

希望本文所述对大家的C#程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表