您好,登錄后才能下訂單哦!
這篇文章主要講解了“Go語言怎么實現二叉樹遍歷”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Go語言怎么實現二叉樹遍歷”吧!
二叉樹需滿足的條件
① 本身是有序樹
② 樹中包含的各個節點的長度不能超過2,即只能是0、1或者2
前序遍歷二叉樹的順序:根——》左——》右
package main import "fmt" //定義結構體 type Student struct { Name string Age int Score float32 left *Student //左子樹指針 right *Student //右子樹指針 } //二叉樹定義 func main() { //根節點 var root Student root.Name = "root" root.Age = 18 root.Score = 88 //一級左子樹 var left1 Student left1.Name = "left1" left1.Age = 20 left1.Score = 80 root.left = &left1 //一級右子樹 var right1 Student right1.Name = "right1" right1.Age = 22 right1.Score = 100 root.right = &right1 //二級左子樹 var left2 Student left2.Name = "left2" left2.Age = 25 left2.Score = 90 left1.left = &left2 //調用遍歷函數 Req(&root) } //遞歸算法遍歷整個二叉樹 func Req(tmp *Student) { for tmp == nil { return } fmt.Println(tmp) //遍歷左子樹 Req(tmp.left) //遍歷右子樹 Req(tmp.right) }
輸出結果如下
&{root 18 88 0xc0000c0480 0xc0000c04b0}
&{left1 20 80 0xc0000c04e0 <nil>}
&{left2 25 90 <nil> <nil>}
&{right1 22 100 <nil> <nil>}
中序遍歷:左——》根——》右
package main import "fmt" //定義結構體 type Student struct { Name string Age int Score float32 left *Student //左子樹指針 right *Student //右子樹指針 } //二叉樹定義 func main() { //根節點 var root Student root.Name = "root" root.Age = 18 root.Score = 88 //一級左子樹 var left1 Student left1.Name = "left1" left1.Age = 20 left1.Score = 80 root.left = &left1 //一級右子樹 var right1 Student right1.Name = "right1" right1.Age = 22 right1.Score = 100 root.right = &right1 //二級左子樹 var left2 Student left2.Name = "left2" left2.Age = 25 left2.Score = 90 left1.left = &left2 //調用遍歷函數 Req(&root) } //遞歸算法遍歷整個二叉樹 func Req(tmp *Student) { for tmp == nil { return } //遍歷左子樹 Req(tmp.left) //輸出root節點 fmt.Println(tmp) //遍歷右子樹 Req(tmp.right) }
輸出結果如下
&{left2 25 90 <nil> <nil>}
&{left1 20 80 0xc000114510 <nil>}
&{root 18 88 0xc0001144b0 0xc0001144e0}
&{right1 22 100 <nil> <nil>}
后序遍歷:左——》右——》根
package main import "fmt" //定義結構體 type Student struct { Name string Age int Score float32 left *Student //左子樹指針 right *Student //右子樹指針 } //二叉樹定義 func main() { //根節點 var root Student root.Name = "root" root.Age = 18 root.Score = 88 //一級左子樹 var left1 Student left1.Name = "left1" left1.Age = 20 left1.Score = 80 root.left = &left1 //一級右子樹 var right1 Student right1.Name = "right1" right1.Age = 22 right1.Score = 100 root.right = &right1 //二級左子樹 var left2 Student left2.Name = "left2" left2.Age = 25 left2.Score = 90 left1.left = &left2 //調用遍歷函數 Req(&root) } //遞歸算法遍歷整個二叉樹 func Req(tmp *Student) { for tmp == nil { return } //遍歷左子樹 Req(tmp.left) //遍歷右子樹 Req(tmp.right) //輸出root節點 fmt.Println(tmp) }
輸出結果如下
&{left2 25 90 <nil> <nil>}
&{left1 20 80 0xc0000c04e0 <nil>}
&{right1 22 100 <nil> <nil>}
&{root 18 88 0xc0000c0480 0xc0000c04b0}
感謝各位的閱讀,以上就是“Go語言怎么實現二叉樹遍歷”的內容了,經過本文的學習后,相信大家對Go語言怎么實現二叉樹遍歷這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。