binary Tree (1) 썸네일형 리스트형 (C++) - LeetCode (easy) 144. Binary Tree Preorder Traversal https://leetcode.com/problems/binary-tree-preorder-traversal/ Binary Tree Preorder Traversal - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com preorder를 구현해보는 문제였습니다. 📕 풀이방법 📔 풀이과정 preorder란 binary tree를 순회하는 방식입니다. root node -> root의 왼쪽 자식 -> root의 오른쪽 자식 순으로 순회하는 algorithm으로 재귀로 .. 이전 1 다음