二叉樹的深搜與廣搜

數據結構中的有兩個比較重要的算法。深度優先搜索和廣度優先搜索。 二叉樹中的深度搜索就是對一個分支進行遍歷,而廣搜就是一層一層的搜索。 下面經過代碼進行講解:node #include <iostream> #include <queue> using namespace std; struct Node { Node *Left; int Value; Node *Righ
相關文章
相關標籤/搜索