Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 224 Bytes

009 BFS Binary Tree.md

File metadata and controls

23 lines (14 loc) · 224 Bytes

二元樹

搜尋 方式

  1. BFS

遍歷 Traversal 方式

  1. level-order

Tree 樣子

/_--------5 _----2---------6 _--1---4-----n---7 _-n-n-3-n---n-n-n-n */

  1. 5 2 6 1 4 7 3