Skip to content

Instantly share code, notes, and snippets.

@zack-w
Created October 4, 2019 10:55
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 zack-w/fe4c25854c3d276501fff76f93a820b8 to your computer and use it in GitHub Desktop.
Save zack-w/fe4c25854c3d276501fff76f93a820b8 to your computer and use it in GitHub Desktop.
/*
Binary Tree Level Order Traversal - LeetCode:
https://leetcode.com/problems/binary-tree-level-order-traversal/
This code passes all Leetcode test cases as of Feb. 3 2019
Runtime: 1 ms, faster than 82.85% of Java online submissions for Binary Tree Level Order Traversal.
Memory Usage: 26.5 MB, less than 64.46% of Java online submissions for Binary Tree Level Order Traversal.
The video to explain this code is here: https://www.youtube.com/watch?v=gcR28Hc2TNQ
*/
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) { val = x; }
}
public List<List<Integer>> levelOrder(TreeNode root) {
if (root == null) {
return new ArrayList<>();
}
/*
The list to hold the level by level layers of the tree
*/
List<List<Integer>> levelsList = new ArrayList<List<Integer>>();
/*
Our queue to enforce a traversal in a breadth-first manner
*/
Queue<TreeNode> queue = new LinkedList<>();
/*
Add the root node to start the breadth first search
*/
queue.offer(root);
/*
We will continue the breadth first search as long as
there are nodes to process.
We do not need a hashtable to track nodes already
visited since a tree is an acyclic connected graph.
Each iteration will process a layer of the tree.
*/
while (!queue.isEmpty()) {
/*
The list to hold all the node's values in the
layer we are about to process
*/
List<Integer> currentLayer = new ArrayList<>();
/*
We will get the size of the layer in the queue
that we need to process so that we know how
many nodes our for loop needs to process
*/
int layerSize = queue.size();
for (int i = 0; i < layerSize; i++) {
/*
Remove the nodes so that we can process it
*/
TreeNode currentNode = queue.poll();
/*
Add the node's value to the current layer list
*/
currentLayer.add(currentNode.val);
/*
If this node has a left add it to be
processed for the next layer
*/
if (currentNode.left != null) {
queue.offer(currentNode.left);
}
/*
If this node has a right add it to be
processed for the next layer
*/
if (currentNode.right != null) {
queue.offer(currentNode.right);
}
}
/*
Notice how currentLayer is a new list on each iteration
of the while loop. We do not need to worry about deep
copying anything here.
*/
levelsList.add(currentLayer);
}
return levelsList;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment