hon9g / algorithms

TIL: to keep practice on algorithms
6 stars 2 forks source link

N-ary Tree #29

Open hon9g opened 4 years ago

hon9g commented 4 years ago

Problems selected by LeetCode for the topic N-ary Tree 🌐

Click ✔️ to go to each solution. The Link to each problem🌐 is at the top of each solution.

🔗 Traversal

# title my solution
589 N-ary Tree Preorder Traversal ✔️
590 N-ary Tree Postorder Traversal ✔️
429 N-ary Tree Level Order Traversal ✔️

🔗 Recursion

# title my solution
559 Maximum Depth of N-ary Tree ✔️
431 Encode N-ary Tree to Binary Tree ✔️

🔗 Conclusion

# title my solution
428 Serialize and Deserialize N-ary Tree
hon9g commented 4 years ago

589. N-ary Tree Preorder Traversal

hon9g commented 4 years ago

590. N-ary Tree Postorder Traversal

hon9g commented 4 years ago

429. N-ary Tree Level Order Traversal

hon9g commented 4 years ago

559. Maximum Depth of N-ary Tree

hon9g commented 4 years ago

431. Encode N-ary Tree to Binary Tree

hon9g commented 4 years ago

428. Serialize and Deserialize N-ary Tree