OJ
Leetcode Tree and Binary Tree
LeetCode 144. Binary Tree Preorder Traversal Description Given the root of a binary tree, return the preorder traversal of its nodes' values. Solution one - Recursive class Solution { private List<Integer> list = new LinkedList<>(); public List<Integer> preorderTraversal(TreeNode root) { // if root is