最新 最热

Leetcode 113 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 and sum = 22,...

2018-01-12
1

Leetcode 112 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 exampl...

2018-01-12
1

Leetcode 129 Sum Root to Leaf Numbers

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 which repre...

2018-01-12
1

Leetcode 279. Perfect Squares

Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n. For example, given n = 12, return...

2018-01-12
1

Excel基础

根据用户提供的文章内容,撰写摘要总结。

2018-01-04
1

[LeetCode] 129. Sum Root to Leaf Numbers

该文是关于二叉树的问题,给定一个代表数字的树,需要求出从根结点到叶子结点的所有路径的和。和Path Sum II类似,只不过需要累加的是每个路径代表的数字。通过递归的方式,对每个结点进行遍历,如果该结点有左右子结点,则递归...

2018-01-03
1

[LeetCode] 40. Combination Sum II

该文是关于LeetCode的40. Combination Sum II问题的一个解决方案。该问题要求给定候选数字集合和目标数字,找到所有不重复的组合,使得它们的和等于目标数字。解决方案使用排序来避免重复组合,并使用递归实现核心算法。...

2018-01-03
1

[LeetCode] 216. Combination Sum III

该文介绍了LeetCode上的一道题目Solution,该题要求找到所有可能的k个数的组合,使得它们的和等于给定的n,同时每个组合中的元素都是1-9之间的数字。文章首先介绍了该题的背景,然后给出了两种情况的示例,并详细介绍了求解该...

2018-01-03
1

浅谈小波分析

腾讯云开发者社区是腾讯云官方开发者社区,致力于打造开发者的技术分享型社区。提供专栏,问答,沙龙等产品和服务,汇聚海量精品云计算使用和开发经验,致力于帮助开发者快速成长与发展,营造开放的云计算技术生态圈。...

2018-01-02
1

DASI_2_Probability

该文讲述了概率的一些基本概念和计算方法,包括样本空间、概率分布、条件概率、独立性、贝叶斯推断以及二项分布和正态分布的转换等。

2018-01-02
1