摘要: 代码: 1 class Solution { 2 public: 3 bool isPalindrome(string s) { 4 transform(s.begin(), s.end(), s.begin(), ::tolower); 5 auto lef... 阅读全文
posted @ 2015-03-02 22:58 Azurewing 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1. History of the C++ Standards1.1 History of the C++ StandardsC++98 -> C++03 -> TR1 -> C++11 -> C++14(书中没有,貌似是最新标准)1.2 Common Questions about the C++... 阅读全文
posted @ 2015-03-02 16:42 Azurewing 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 算法渣,现实基本都参考或者完全拷贝[戴方勤(soulmachine@gmail.com)]大神的leetcode题解,此处仅作刷题记录。 1 class Solution { 2 public: 3 vector > fourSum(vector &num, int target) ... 阅读全文
posted @ 2015-03-02 14:16 Azurewing 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1.1 为什么进行数据挖掘数据挖掘把大型数据集转化成知识。数据仓库是一种多个异构数据源在单个站点以统一的模式组织的存储,以支持管理决策。联机分析处理(OLAP)是一种分析技术,具有汇总、合并和聚集以及从不同的角度观察信息的能力。(注:与联机事务处理OLTP不同)1.2 什么是数据挖掘数据挖掘是从大量... 阅读全文
posted @ 2015-03-02 11:12 Azurewing 阅读(194) 评论(0) 推荐(0) 编辑