!!!!!!114. Flatten Binary Tree to Linked List

Posted 积少成多

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了!!!!!!114. Flatten Binary Tree to Linked List相关的知识,希望对你有一定的参考价值。

Given a binary tree, flatten it to a linked list in-place.

For example,
Given

         1
        /        2   5
      / \        3   4   6

 

The flattened tree should look like:

   1
         2
             3
                 4
                     5
                         6

========

思路:

将一个二叉树 就地 压成"链表"的结构;

 

以上是关于!!!!!!114. Flatten Binary Tree to Linked List的主要内容,如果未能解决你的问题,请参考以下文章

114. Flatten Binary Tree to Linked List

114. Flatten Binary Tree to Linked List

LeetCode 114. Flatten Binary Tree to Linked List

114. Flatten Binary Tree to Linked List

!!!!!!114. Flatten Binary Tree to Linked List

114. Flatten Binary Tree to Linked List