C++LeetCode 구현(116.각 노드 의 오른쪽 포인터)
6829 단어 C++각 노드 의 오른쪽 포인터LeetCode
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following definition:
struct Node {
int val;
Node *left;
Node *right;
Node *next;
}
Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be set to NULL.
Initially, all next pointers are set to NULL.
Example:
Input: {"$id":"1","left":{"$id":"2","left":"$id":"3","left":null,"next":null,"right":null,"val":4},"next":null,"right":{"$id":"4","left":null,"next":null,"right":null,"val":5},"val":2},"next":null,"right":{"$id":"5","left":{"$id":"6","left":null,"next":null,"right":null,"val":6},"next":null,"right":{"$id":"7","left":null,"next":null,"right":null,"val":7},"val":3},"val":1}
Output: {"$id":"1","left":{"$id":"2","left":{"$id":"3","left":null,"next":{"$id":"4","left":null,"next":{"$id":"5","left":null,"next":{"$id":"6","left":null,"next":null,"right":null,"val":7},"right":null,"val":6},"right":null,"val":5},"right":null,"val":4},"next":{"$id":"7","left":{"$ref":"5"},"next":null,"right":{"$ref":"6"},"val":3},"right":{"$ref":"4"},"val":2},"next":null,"right":{"$ref":"7"},"val":1}
Explanation: Given the above perfect binary tree (Figure A), your function should populate each next pointer to point to its next right node, just like in Figure B.
Note:
해법 1:
class Solution {
public:
Node* connect(Node* root) {
if (!root) return NULL;
if (root->left) root->left->next = root->right;
if (root->right) root->right->next = root->next? root->next->left : NULL;
connect(root->left);
connect(root->right);
return root;
}
};
재 귀적 이지 않 은 해법 은 조금 복잡 해 야 하지만 특별히 복잡 하지 않 습 니 다.quue 로 보조 해 야 합 니 다.층 차 를 옮 겨 다 니 기 때문에 각 층 의 노드 는 순서대로 quue 에 가입 합 니 다.quue 에서 하나의 요 소 를 꺼 낼 때마다 next 지침 을 quue 의 다음 노드 를 가리 키 면 됩 니 다.각 층 의 시작 요소 가 옮 겨 다 니 기 전에먼저 이 층 의 총 개 수 를 통계 하고 for 순환 을 사용 합 니 다.그러면 for 순환 이 끝 날 때 이 층 은 이미 옮 겨 다 녔 습 니 다.코드 는 다음 과 같 습 니 다.해법 2:
// Non-recursion, more than constant space
class Solution {
public:
Node* connect(Node* root) {
if (!root) return NULL;
queue<Node*> q;
q.push(root);
while (!q.empty()) {
int size = q.size();
for (int i = 0; i < size; ++i) {
Node *t = q.front(); q.pop();
if (i < size - 1) {
t->next = q.front();
}
if (t->left) q.push(t->left);
if (t->right) q.push(t->right);
}
}
return root;
}
};
우 리 는 다음 과 같은 토 치 카 를 살 펴 보 겠 습 니 다.두 개의 포인터 start 와 cur 를 사용 합 니 다.그 중에서 start 는 각 층 의 시작 노드 를 표시 하고 cur 는 이 층 의 노드 를 옮 겨 다 니 며 디자인 사고방식 이 교묘 해서 어 쩔 수 없 이 복용 해 야 합 니 다.해법 3:
// Non-recursion, constant space
class Solution {
public:
Node* connect(Node* root) {
if (!root) return NULL;
Node *start = root, *cur = NULL;
while (start->left) {
cur = start;
while (cur) {
cur->left->next = cur->right;
if (cur->next) cur->right->next = cur->next->left;
cur = cur->next;
}
start = start->left;
}
return root;
}
};
Github 동기 화 주소:https://github.com/grandyang/leetcode/issues/116
유사 한 제목:
Populating Next Right Pointers in Each Node II
Binary Tree Right Side View
참고 자료:
https://leetcode.com/problems/populating-next-right-pointers-in-each-node/
https://leetcode.com/problems/populating-next-right-pointers-in-each-node/discuss/37473/My-recursive-solution(Java)
https://leetcode.com/problems/populating-next-right-pointers-in-each-node/discuss/37472/A-simple-accepted-solution
C++구현 LeetCode(116.각 노드 의 오른쪽 방향 포인터)에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 C++구현 각 노드 의 오른쪽 방향 포인터 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 응원 부탁드립니다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.