代码拉取完成,页面将自动刷新
/*
* @lc app=leetcode.cn id=116 lang=cpp
*
* [116] 填充每个节点的下一个右侧节点指针
*/
// @lc code=start
/*
// Definition for a Node.
class Node {
public:
int val;
Node* left;
Node* right;
Node* next;
Node() : val(0), left(NULL), right(NULL), next(NULL) {}
Node(int _val) : val(_val), left(NULL), right(NULL), next(NULL) {}
Node(int _val, Node* _left, Node* _right, Node* _next)
: val(_val), left(_left), right(_right), next(_next) {}
};
*/
class Solution {
public:
void traverse(Node* node1, Node* node2) {
if (node1 == nullptr || node2 == nullptr) {
return;
}
node1->next = node2;
traverse(node1->left, node1->right);
traverse(node2->left, node2->right);
traverse(node1->right, node2->left);
}
Node* connect(Node* root) {
if (root == nullptr) return nullptr;
traverse(root->left, root->right);
return root;
}
};
// @lc code=end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。