码迷,mamicode.com
首页 >  
搜索关键字:flatten    ( 362个结果
LeetCode OJ: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 6The flattened tree...
分类:其他好文   时间:2015-10-26 00:02:41    阅读次数:155
114. Flatten Binary Tree to Linked List (Stack, Tree; DFS)
Given a binary tree, flatten it to a linked list in-place. For example,Given 1 / \ 2 5 / \ \ 3 4 6The flattened ...
分类:其他好文   时间:2015-10-03 18:17:01    阅读次数:176
9.21-9.27
1.Flatten Binary Tree to Linked List 1 //dfs、前序遍历一下即可 2 class Solution { 3 public: 4 void dfs(TreeNode* root, TreeNode* &pre) 5 { 6 if...
分类:其他好文   时间:2015-09-21 09:12:20    阅读次数:166
*[?]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 6The flattened t...
分类:其他好文   时间:2015-09-01 08:00:49    阅读次数:113
Flatten Binary Tree to Linked List
https://leetcode.com/problems/flatten-binary-tree-to-linked-list/二叉树先序遍历,之后做成链表 1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4.....
分类:其他好文   时间:2015-08-28 19:32:28    阅读次数:133
Flatten Binary Tree to Linked List
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x...
分类:其他好文   时间:2015-08-25 23:32:32    阅读次数:178
LeetCode-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...
分类:其他好文   时间:2015-08-15 16:33:08    阅读次数:140
【LeetCode-面试算法经典-Java实现】【114-Flatten Binary Tree to Linked List(二叉树转单链表)】
【114-Flatten Binary Tree to Linked List(二叉树转单链表)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Given a binary tree, flatten it to a linked list in-place.   For example,   Given 1 / 2...
分类:编程语言   时间:2015-08-12 07:49:13    阅读次数:183
[LeetCode] Flatten Binary Tree to Linked List
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 fl...
分类:其他好文   时间:2015-08-11 18:44:03    阅读次数:110
LeetCode -- Flatten 二叉树
LeetCode -- Flatten 二叉树...
分类:其他好文   时间:2015-08-11 16:16:09    阅读次数:71
362条   上一页 1 ... 23 24 25 26 27 ... 37 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!