码迷,mamicode.com
首页 >  
搜索关键字:二叉树路径    ( 40个结果
二叉树性质和有关操作汇总
二叉树是一种重要的数据结构.  二叉树是n(n>=0)个结点的有限集合,该集合或为空集,或由一个根结点和两棵互不相交的,分别称为根结点的左子树和右子树的二叉树组成(递归定义) 满二叉树:对于这样的一棵二叉树,如果所有分支结点都存在左右子树,且所有叶子节点都在同一层上,称这样的二叉树为满二叉树。 完全二叉树:如果一棵具有n个结点的二叉树的结构与满二叉树的前n个结点完全相同,称之为完全二叉树。 ...
分类:其他好文   时间:2015-05-10 20:33:27    阅读次数:156
leetcode || 124、Binary Tree Maximum Path Sum
problem: Given a binary tree, find the maximum path sum. The path may start and end at any node in the tree. For example: Given the below binary tree, 1 / 2 3 ...
分类:其他好文   时间:2015-04-27 13:20:29    阅读次数:130
C语言强化(四) 求和为某个值的二叉树路径
递归究竟有多强大,看看这道题就知道了。...
分类:编程语言   时间:2015-04-23 11:05:52    阅读次数:210
LeetCode (12) Path Sum (二叉树路径和判断)
题目描述Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.For example: Given the below binary tree and sum...
分类:其他好文   时间:2015-04-18 22:01:55    阅读次数:136
二叉树路径和
//一棵二叉树每个结点包含一个整数,请设计一个算法输出所有满足条件的路径:此路径上的所有结点之和等于给定值。注意此类路径不要求必须从根节点开始void printBuffer(vector buffer, int level, int i1){ for (int i=level;i buffe...
分类:其他好文   时间:2015-04-06 15:22:28    阅读次数:142
Path Sum(二叉树路径和)
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:其他好文   时间:2015-03-18 15:20:00    阅读次数:131
Path Sum II 二叉树路径之和之二
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree andsum =...
分类:其他好文   时间:2014-10-22 07:36:22    阅读次数:218
二叉树路径和
二叉树路径求和并打印路径...
分类:其他好文   时间:2014-09-02 22:57:15    阅读次数:192
Leetcode:Path Sum 二叉树路径和
Path Sum:Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the giv...
分类:其他好文   时间:2014-06-13 16:09:02    阅读次数:237
笔试算法题(06):最大连续子数组和 & 二叉树路径和值
出题:预先输入一个整型数组,数组中有正数也有负数;数组中连续一个或者多个整数组成一个子数组,每个子数组有一个和;求所有子数组中和的最大值,要求时间复杂度O(n);分析:时间复杂度为线性表明只允许一遍扫描,当然如果最终的最大值为0表明所有元素都是负数,可以用线性时间O(N)查找最大的元素。具体算法策略...
分类:其他好文   时间:2014-05-18 20:21:35    阅读次数:339
40条   上一页 1 2 3 4
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!