自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (5)
  • 收藏
  • 关注

原创 算法概论chapter8-8.15解题报告

题目最大公共子图:证明如下问题是NP-完全的:输入:两个图G1=(V1,E1)和G2=(V2,E2);预算b输出:两个节点集合V1’和V2’分别是V1和V2的子集,它们被移除后,将在两图中分别留下至少b个节点,且图的剩余部分完全一样题意分析给定两个图G1,G2,G1去掉一些定点V1’,G2去掉一些定点V2’之后,两个图都得到结点数至少为b的子图,且这两个子图完全相同。证明要证一个问题是NP-com

2017-12-28 16:47:00 221

原创 动态规划解377. Combination Sum IV

题目Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target.nums = [1, 2, 3]target = 4The possible combinat

2017-12-24 12:02:24 196

原创 动态规划解368. Largest Divisible Subset

题目Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfies: Si % Sj = 0 or Sj % Si = 0.If there are multiple solutions, retu

2017-12-24 00:43:49 437

原创 357. Count Numbers with Unique Digits解题报告

题目Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x 10^n.Example:Given n = 2, return 91. (The answer should be the total numbers in the range of 0 ≤ x 100, excludi

2017-12-10 12:28:12 192

原创 动态规划解338. Counting Bits

题目Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1’s in their binary representation and return them as an array.Example:For num = 5 you s

2017-12-05 23:57:23 220

原创 动态规划解221. Maximal Square

题目Given a 2D binary matrix filled with 0’s and 1’s, find the largest square containing only 1’s and return its area.For example, given the following matrix: 1 0 1 0 0 1 0 1 1 1 1 1 1 1 1

2017-12-05 23:03:41 182

原创 动态规划解343. Integer Break

题目Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum product you can get.For example, given n = 2, return

2017-12-04 23:37:46 226

原创 动态规划解337. House Robber III

题目The thief has found himself a new place for his thievery again. There is only one entrance to this area, called the “root.” Besides the root, each house has one and only one parent house. After a tou

2017-12-04 23:04:36 191

原创 318. Maximum Product of Word Lengths解题报告

题目Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share common letters. You may assume that each word will contain only lower case let

2017-12-04 09:21:10 176

无监督学习方法以及应用

无监督学习是机器学习的一个重要分支,其在机器学习、数据挖掘、生物医学大数据分析、数据科学等领域有着重要地位。本书阐述作者近年在无监督学习领域所取得的主要研究成果,包括次胜者受罚竞争学习算法、K-means学习算法、K-medoids学习算法、密度学习算法、谱图聚类算法;*后介绍了无监督学习在基因选择、疾病诊断中的应用。

2018-06-03

图灵程序设计丛书 机器学习 弗拉赫

《机器学习》是全面的机器学习教材之一。书中首先介绍了机器学习的构成要素(任务、模型、特征)和机器学习任务,接着详细分析了逻辑模型(树模型、规则模型)、几何模型(线性模型和基于距离的模型)和概率模型,然后讨论了特征、模型的集成,以及被机器学习研究者称为“实验”的方法。作者不仅使用了已有术语,还引入了一些新的概念,同时提供了大量精选的示例和插图解说。

2018-05-26

数据结构与算法 张铭,王腾蛟,赵海燕编著

普通高等教育"十一五"国家级规划教材--数据结构与算法

2018-05-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除