Problem: 94. 二叉树的中序遍历
https://ancientelement.gitee.io/2023/12/06/计算机科学基础/leetcode刷题/二叉树/leetcode二叉树复习/
Code
[]1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
public class Solution {
public IList<int> InorderTraversal(TreeNode root) {
List<int> help = new List<int>();
ForEach(root,help);
return help;
}
public void ForEach(TreeNode node,IList<int> list) {
if(node == null) return;
ForEach(node.left,list);
list.Add(node.val);
ForEach(node.right,list);
}
}
|