In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
It is believed that many inexperienced people are at a loss about how to associate each node with its right neighbor in the python binary tree. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.
If described in C, a binary tree node definition includes a right node pointer, a left node pointer, and a right connected pointer; give a binary tree to maintain its right adjacent pointer, and if it is the rightmost node, the pointer is null.
Struct Node {
Int val
Node * left
Node * right
Node * next
}
The idea is actually very simple, this can analyze the binary tree by layer, first put the current layer node into a queue from left to right, traverse the queue; if it is not the last node in the queue, then according to the next of the current node is the next node; at the same time, put the child nodes of each node into the next layer queue from left to right; then traverse the next layer queue until the queue is empty.
The code is as follows:
"" # Definition for a Node.class Node: def _ init__ (self, val: int = 0, left: 'Node' = None, right:' Node' = None, next: 'Node' = None): self.val = val self.left = left self.right = right self.next = next "" class Solution: def connect (self Root: 'Node')->' Node': if root = = None: return None else: nodeList = [] nodeList.append (root) while nodeList! = []: nextList = [] for i in range (len (nodeList)): if nodeList [I] .left! = None: nextList.append (nodeList [I] .left) if nodeList [I] .right! = None: nextList.append (nodeList [I] .right) if iTunes = len (nodeList)-1: nodeList [I] .next = nodeList [iTun1] NodeList = nextList return root after reading the above content Have you learned how to associate each node with its right neighbor in the python binary tree? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.