Skip to content

Instantly share code, notes, and snippets.

@InterviewBytes
Created June 10, 2017 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InterviewBytes/1d74444ebe91c90a35ea03f79e5ae825 to your computer and use it in GitHub Desktop.
Save InterviewBytes/1d74444ebe91c90a35ea03f79e5ae825 to your computer and use it in GitHub Desktop.
Inorder Traversal Recursive
package com.interviewbytes.trees;
import java.util.ArrayList;
import java.util.List;
public class InorderTraversalRecursive {
public List<Integer> inorderTraversal(TreeNode root) {
List<Integer> list = new ArrayList<>();
helper(list, root);
return list;
}
private void helper(List<Integer> list, TreeNode node) {
if (node == null) return;
helper(list, node.left);
list.add(node.val);
helper(list, node.right);
}
}
package com.interviewbytes.trees;
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment