Coddicted
Code. Automation. Software Solution
Code
Algo & Data Structures
C
C++
Computer Graphics
Java
Python
SQL
Concepts
How To
Reviews
Posts tagged: Flatten Binary Tree to Linked List
Flatten Binary Tree to Linked List
Nov
27
2015
Title: Flatten Binary Tree to Linked List Source: leetcode.com Given a binary tree, flatten it to a linked list in-place. For example, Given 1 / \ 2 5 / \ \ 3 4 6 12345 1 / \ 2 5 / \ \ 3 4 6 1 \ 2 \ 3 \ 4 \ 5 \ ...