
路线求和
文章平均质量分 77
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 112. Path Sum(路径和)
原题网址:https://leetcode.com/problems/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.原创 2016-05-24 00:18:59 · 488 阅读 · 0 评论 -
LeetCode 113. Path Sum II(路径和)
原题网址:https://leetcode.com/problems/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原创 2016-05-24 00:19:11 · 827 阅读 · 0 评论 -
LeetCode 174. Dungeon Game(游戏)
原题网址:https://leetcode.com/problems/dungeon-game/ The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. The dungeon consists of M x N rooms laid ou原创 2016-05-25 01:35:03 · 560 阅读 · 0 评论 -
LeetCode 124. Binary Tree Maximum Path Sum(二叉树最大路径和)
原题网址:https://leetcode.com/problems/binary-tree-maximum-path-sum/ Given a binary tree, find the maximum path sum. For this problem, a path is defined as any sequence of nodes from some starting原创 2016-05-27 00:27:32 · 2083 阅读 · 0 评论 -
LeetCode 120. Triangle(三角形)
原题网址:https://leetcode.com/problems/triangle/ Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the原创 2016-05-24 00:20:03 · 821 阅读 · 0 评论 -
437. Path Sum III
原题网址:https://leetcode.com/problems/path-sum-iii/ You are given a binary tree in which each node contains an integer value. Find the number of paths that sum to a given value. The path does原创 2016-10-27 01:42:32 · 679 阅读 · 0 评论