We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b663bc8 commit c976fdcCopy full SHA for c976fdc
populating-next-right-pointers-in-each-node/README.md
@@ -1,3 +1,8 @@
1
+## First glance
2
+
3
+It would be an easy problem if [Binary Tree Level Order Traversal](../binary-tree-level-order-traversal) works.
4
+Yet, a queue is not allow because of that constant space is required.
5
6
## Recursion
7
8
connecting left and right child is easy, just `node.left.next = node.right`
0 commit comments