博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【leetcode】Populating Next Right Pointers in Each Node II
阅读量:4949 次
发布时间:2019-06-11

本文共 2530 字,大约阅读时间需要 8 分钟。

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
 
与I的思路类似
left->next=father->right
right->next=father->next->left;
 
只是当我们没有找到时,father=father->next;
需要注意,先搜索右子树,再搜索左子树
 
 
1 /** 2  * Definition for binary tree with next pointer. 3  * struct TreeLinkNode { 4  *  int val; 5  *  TreeLinkNode *left, *right, *next; 6  *  TreeLinkNode(int x) : val(x), left(NULL), right(NULL), next(NULL) {} 7  * }; 8  */ 9 class Solution {10 public:11     void connect(TreeLinkNode *root) {12        13         if(root==NULL)14         {15             return;16         }17        18         if(root->left!=NULL)19         {20             if(root->right!=NULL)21             {22                 root->left->next=root->right;23             }24             else25             {26                 TreeLinkNode *tmp=root->next;27                 root->left->next=NULL;28                 while(tmp!=NULL)29                 {30                     if(tmp->left!=NULL)31                     {32                         root->left->next=tmp->left;33                         break;34                     }35                    36                     if(tmp->right!=NULL)37                     {38                         root->left->next=tmp->right;39                         break;40                     }41                     tmp=tmp->next;42                 }43             }44         }45        46         if(root->right!=NULL)47         {48             TreeLinkNode *tmp=root->next;49             root->right->next=NULL;50             while(tmp!=NULL)51             {52                 if(tmp->left!=NULL)53                 {54                     root->right->next=tmp->left;55                     break;56                 }57                    58                 if(tmp->right!=NULL)59                 {60                     root->right->next=tmp->right;61                     break;62                 }63                 tmp=tmp->next;64             }65         }66        67        68         connect(root->right);69         connect(root->left);70        71     }72 };

 

转载于:https://www.cnblogs.com/reachteam/p/4202226.html

你可能感兴趣的文章
委托、IOC全知道
查看>>
对称加密和非对称加密
查看>>
扫码跳转AppStore
查看>>
公司的jsonp库的使用方法
查看>>
SpringDataJpa
查看>>
LeetCode 120. 三角形最小路径和(Triangle)
查看>>
Zabbix 3.2.6-Mysql多实例监控-Percona Monitoring Plugins自动发现
查看>>
在iis上部署asp.net mvc2.0
查看>>
POJ 3221 Diamond Puzzle.
查看>>
排序之表排序、基数排序及全部排序算法比較
查看>>
关闭SSH其他用户会话连接
查看>>
jq获取单选框、复选框、下拉菜单的值
查看>>
Luogu P3919【模板】可持久化数组(可持久化线段树/平衡树)
查看>>
一个简单的计算分数的小程序
查看>>
sql注入的防护
查看>>
web安全之SQL注入
查看>>
9.leetcode70-climbing stairs
查看>>
常用算法之----选择排序
查看>>
[原创]ConsoleApplication ProgressBar
查看>>
5行代码实现微信小程序图片上传与腾讯免费5G存储空间的使用
查看>>