摘要: 倒置二叉树答案: 递归方法 # Definition for a binary tree node. # class TreeNode(object): # def __init__(self, x): # self.val = x # self.left = None # self.right = 阅读全文
posted @ 2016-03-07 19:31 python挖掘 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, find its maximum depth.求二叉树的最大深度 The maximum depth is the number of nodes along the longest path from the root node down to the f 阅读全文
posted @ 2016-03-07 19:23 python挖掘 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 资源不错 http://www.17bigdata.com/scikit-learn%e7%9a%84%e4%b8%bb%e8%a6%81%e6%a8%a1%e5%9d%97%e5%92%8c%e5%9f%ba%e6%9c%ac%e4%bd%bf%e7%94%a8.html 一幅图简单明了的介绍了s 阅读全文
posted @ 2016-03-07 15:46 python挖掘 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 深入浅出:所谓“深入”,指得是从数据挖掘的原理与经典算法入手。其一是要了解算法,知道什么场景应当应用什么样的方法;其二是学习算法的经典思想,可以将它应用到其他的实际项目之中;其三是理解算法,让数据挖掘的算法能够应用到您的项目开发之中去。所谓“浅出”,指得是将数据挖掘算法的应用落实到实际的应用中。 根 阅读全文
posted @ 2016-03-07 15:25 python挖掘 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 基于微软案例数据库的数据挖掘 参考http://www.cnblogs.com/zhijianliutang/p/4000988.html OLTP vs OLAP 参考http://datawarehouse4u.info/OLTP-vs-OLAP.html 大概意思是:IT系统分为传输(OLTP 阅读全文
posted @ 2016-03-07 15:24 python挖掘 阅读(139) 评论(0) 推荐(0) 编辑