Leetcode: Populating Next Right Pointers in Each Node

7124 단어 LeetCode
Given a binary tree



    struct TreeLinkNode {

      TreeLinkNode *left;

      TreeLinkNode *right;

      TreeLinkNode *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.



Note:



You may only use constant extra space.

You may assume that it is a perfect binary tree (ie, all leaves are at the same level, and every parent has two children).

For example,

Given the following perfect binary tree,

         1

       /  \

      2    3

     / \  / \

    4  5  6  7

After calling your function, the tree should look like:

         1 -> NULL

       /  \

      2 -> 3 -> NULL

     / \  / \

    4->5->6->7 -> NULL

난이도:86,및Binary Tree Level Order Traversal 문제는 유사하다. 각 층의 노드를 하나의 체인 테이블로 연결하고 마지막 노드를 Null로 연결한다.각 층의 첫 번째 노드를 찾아서 순서대로 뒤로 연결해야 한다.이것은 체인 테이블의 기본적인 조작이다.이 문제는 Tree Link Nodepre를 사용하여 이 선행 노드를 만들었습니다. 처음에는 값을 부여하지 않고 반복 과정에서 점프 노드를 기록했습니다. 매번 반복이 끝날 때마다 Null로 설정했습니다.현재 노드가 한 층의 시작인지 아닌지를 판단하기 위해 복사되었는지 여부입니다.
 1 /**

 2  * Definition for binary tree with next pointer.

 3  * public class TreeLinkNode {

 4  *     int val;

 5  *     TreeLinkNode left, right, next;

 6  *     TreeLinkNode(int x) { val = x; }

 7  * }

 8  */

 9 public class Solution {

10     public void connect(TreeLinkNode root) {

11         if (root == null) return;

12         LinkedList<TreeLinkNode> queue = new LinkedList<TreeLinkNode>();

13         queue.add(root);

14         int ParentNumInQ = 1;

15         int ChildNumInQ = 0;

16         TreeLinkNode pre = null;

17         

18         while (!queue.isEmpty()) {

19             TreeLinkNode cur = queue.poll();

20             if (pre == null) {

21                 pre = cur;

22             }

23             else {

24                 pre.next = cur;

25                 pre = pre.next;

26             }

27             ParentNumInQ--;

28             if (cur.left != null) {

29                 queue.add(cur.left);

30                 ChildNumInQ++;

31             }

32             if (cur.right != null) {

33                 queue.add(cur.right);

34                 ChildNumInQ++;

35             }

36             if (ParentNumInQ == 0) {

37                 ParentNumInQ = ChildNumInQ;

38                 ChildNumInQ = 0;

39                 pre.next = null;

40                 pre = pre.next;

41             }

42         }

43     }

44 }

16줄은variablepre를null로 지정하고 TreeLinkNodepre를 직접 정의하는 것과 같다.후자는 오류를 보고할 것이다. variable not initiate

좋은 웹페이지 즐겨찾기