LeetCode Week 6

144. Binary Tree Preorder Traversal Given a binary tree, return the preorder traversal of its nodes’ values. solutions: 本題意是要求不使用遞歸而是用迭代的方法輸出一顆二叉樹的前序遍歷。 對於前序遍歷,先訪問根節點,再訪問左子樹,最後訪問右子樹。 先訪問root節點,並將它和它的v
相關文章
相關標籤/搜索