leetcode114
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode114相关的知识,希望对你有一定的参考价值。
class Solution { public: void flatten(TreeNode* root) { while(root){ if(root->left){ TreeNode* pre=root->left; while(pre->right){ pre=pre->right; } pre->right=root->right; root->right=root->left; root->left=nullptr; } root=root->right; } } };
以上是关于leetcode114的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode第114题—二叉树展开为链表—Python实现
LeetCode 114. Flatten Binary Tree to Linked List