LeetCode 117:Populating Next Right Pointers in Each Node II

Posted mthoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 117:Populating Next Right Pointers in Each Node II相关的知识,希望对你有一定的参考价值。

Follow up for problem "Populating Next Right Pointers in Each Node".

What if the given tree could be any binary tree? Would your previous solution still work?

Note:

  • You may only use constant extra space.

For example,
Given the following binary tree,

         1
       /        2    3
     / \        4   5    7

After calling your function, the tree should look like:

         1 -> NULL
       /        2 -> 3 -> NULL
     / \        4-> 5 -> 7 -> NULL

Subscribe to see which companies asked this question

//二叉树进行层次遍历
//推断最底层的条件:假设当前訪问的层有任一节点存在子节点,说明当前层不是最底层。
class Solution{
public:
	TreeLinkNode* nextLeft;
	bool hasToTheEnd;
	void connect(TreeLinkNode *root)
	{
		if (!root)  return;

		hasToTheEnd = false;
		int level = 1;
		while (!hasToTheEnd)
		{
			hasToTheEnd= true;
			nextLeft= NULL;
			VisitLevel(root, level);
			++level;
		}
	}

	void VisitLevel(TreeLinkNode* node, int level)
	{
		if (level == 1)
		{
			if (nextLeft != NULL)
			{
				nextLeft->next = node;
			}
			nextLeft = node;

			if (node->left != NULL || node->right != NULL)
			{
				hasToTheEnd= false;
			}
		}

		if (node->left)	  VisitLevel(node->left, level - 1);
		if (node->right)  VisitLevel(node->right, level - 1);
	}
};

技术分享






以上是关于LeetCode 117:Populating Next Right Pointers in Each Node II的主要内容,如果未能解决你的问题,请参考以下文章

leetcode@ [116/117] Populating Next Right Pointers in Each Node I & II (Tree, BFS)

[LeetCode] 117. Populating Next Right Pointers in Each Node II Java

leetcode 117 Populating Next Right Pointers in Each Node II ----- java

[leetcode]117. Populating Next Right Pointers in Each NodeII用next填充同层相邻节点

LeetCode开心刷题五十五天——117. Populating Next Right Pointers in Each Node II

117. Populating Next Right Pointers in Each Node II