自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

用时间去蜕变

制怒、自省

  • 博客(5)
  • 资源 (177)
  • 收藏
  • 关注

转载 【转】学习鞭策及方向指南

当你能自如的运用数据结构和算法、TCP/IP原理、编译原理、操作系统原理、数据库以及Win32 API 调用、构造自己的C++库(网络库、数学库、测试库、图形库)以及各种引擎,出去毕业应该能在短短半年时间里薪水至少有7000以上甚至上万吧(其实毕业生出去95%以上可能没达到这个水平)。  其实也不用说太多,你问你自己几个问题,如果你都能做到或者学习半到2个月就能做到,那肯定是达标了:

2014-01-28 19:32:00 923

原创 【算法学习】回溯法

回溯法(英语:backtracking)是暴力搜寻法中的一种。       回溯法采用试错的思想,它尝试分步的去解决一个问题。在分步解决问题的过程中,当它通过尝试发现现有的分步答案不能得到有效的正确的解答的时候,它将取消上一步甚至是上几步的计算,再通过其它的可能的分步解答再次尝试寻找问题的答案。回溯法通常用最简单的递归方法来实现,在反复重复上述的步骤后可能出现两种情况:      (1

2014-01-24 16:08:52 1324

原创 【蓝桥杯】最大最小公倍数

细心的人不难发现,这个坑爹的蓝桥杯的OJ做的如此之粗糙与恶劣,还设置了坑爹的VIP,想钱之疯魔程度,简直是不忍直视啊。题目上面说1~N-1, 后面给的样例就变成的从1~N里面筛选,这种赤裸裸的扇自己脸的行为,我只能呵呵了。 小规模吐槽完毕,接下来进入正题: 这个题的意思就是要我们在1~N的范围内找三个数,使他们的最小公倍数在这个范围内的...

2014-01-23 14:23:12 12546 13

原创 【蓝桥杯】16转换8进制

在题目锦囊中有提到,咱们可以通过2进制为媒介,达到16转8的目的。   在学习数电逻辑之后,咱们也都知道, 1位16进制可以代表4位2进制, 1位8进制可以代表3位二进制,为此我的代码大题思路就出来了,字符串存储,3位16进制求和入栈输出表示4位8进制,然后出栈输出,于是有了我最开始的代码。   #include#include#includeusing namespace st

2014-01-20 20:44:45 7836 6

原创 全排列生成的算法分析

字典序法      字典序法中,对于数组1, 2, 3.....n的排列, 不同排列的先后顺序是从左到右逐个比较对应的数字的先后来决定的。例如,对于5个数字的排列12354和12345,排列12345在前,12354在后, 按照这样的规定,5个数字中排列在最前面的是12345, 排在最后面的事54321。 字典序算法思想如下:     设P是1~n的一个全排列, p = p1p2.

2014-01-20 14:17:15 917

Manning Deep Learning for Search-2019年.pdf

That's why this book is so material and important. Not only are neural networks, Al, and deep 1earning automating routine jobs and decisions and making them easier, but they are also making search easier. Formerly, the state of the art in informationretrieval and search involved complex linear algebra, including matrix multiplicationto represent the matching of user queries to documents. Today, instead of using alge- braic and linear models. the state of the art involves-as an example-the application of neural networks to discern word similarity between documents after learning how to summarize the documents into words using separate networks. And that is only one area in the search process where Al and deep learning are being used

2019-06-10

Netty 入门与实战:仿写微信 IM 即时通讯系统.zip

Netty 入门与实战:仿写微信 IM 即时通讯系统.zip; 包含单章的 HTML 文件。 也包含一个所有文件合并的 PDF 文件。 文字版,共22章。共132页。

2019-05-13

Graph Algorithms Practical Examples in Apache Spark and Neo4j

Graph Algorithms Practical Examples in Apache Spark and Neo4j 2019-04-15 月的书

2019-05-13

Effective Java 第三版中文版全彩.pdf

Effective Java 第三版中文版全彩.pdf 书签完整,包含全 90 条,高清 true pdf Effective Java 第三版中文版全彩.pdf

2019-05-10

What’s New in Java 11?-O’Reilly(2019).pdf

What’s New in Java 11?-O’Reilly(2019).pdf 带书签,全彩非 true pdf。

2019-04-02

effective java第三版完整版(开源翻译版本)

effective java第三版完整版(开源翻译版本) - github: https://github.com/sjsdfg/effective-java-3rd-chinese - 在线阅读:https://sjsdfg.github.io/effective-java-3rd-chinese/#/

2019-03-20

Architecting Modern Data Platforms(2019)

Architecting Modern Data Platforms - Lars George & Paul Wilkinson & Ian Buss & Jan Kunigk(2018)

2019-03-05

Clustering data streams_ Theory and practice.pdf

Clustering data streams_ Theory and practice.pdf

2019-02-28

Network Intrusion Detection using Deep Learning_A Feature Learning Approach

Network Intrusion Detection using Deep Learning_A Feature Learning Approach-Springer(2018).pdf

2019-02-27

c语言基础讲义

c语言基础讲义

2019-01-26

Machine Learning and Knowledge Discovery in Database, Part IIIs(第三部分)

Machine Learning and Knowledge Discovery in Database, Part IIIs_European Conference, ECML PKDD 2018, Dublin, Ireland.rar

2019-01-20

Machine Learning and Knowledge Discovery in Databases, Part I(第一部分)

Machine Learning and Knowledge Discovery in Databases, Part I_European Conference, ECML PKDD 2018, Dublin, Ireland.rar

2019-01-20

SAnet.st.MongoDB 4 Quick Start Guide.pdf

SAnet.st.MongoDB 4 Quick Start Guide.pdf

2019-01-10

Computer Security Art and Science, Second Edition - Matt Bishop(2018).epub

Computer Security Art and Science, Second Edition - Matt Bishop(2018).epub

2018-11-12

Sanet.st.Feature Engineering Made Easy - Sinan Ozdemir.epub(正式版)

Sanet.st.Feature Engineering Made Easy - Sinan Ozdemir.epub(正式版) 让特征工程变得简单正式版 This book will cover the topic of feature engineering. A huge part of the data science and machine learning pipeline, feature engineering includes the ability to identify, clean, construct, and discover new characteristics of data for the purpose of interpretation and predictive analysis. In this book, we will be covering the entire process of feature engineering, from inspection to visualization, transformation, and beyond. We will be using both basic and advanced mathematical measures to transform our data into a form that's much more digestible by machines and machine learning pipelines. By discovering and transforming, we, as data scientists, will be able to gain a whole new perspective on our data, enhancing not only our algorithms but also our insights.

2018-10-24

Machine Learning in Production.pdf

Machine Learning in Production.pdf

2018-10-24

HPUX System and Network Administration.zip

HPUX System and Network Administration.zip 共3本

2018-10-13

Springer.Neural.Information.Processing.Part.V.331970138X.pdf

Springer.Neural.Information.Processing.Part.V.331970138X.pdf

2018-10-09

Springer.Neural.Information.Processing.Part.IV.3319700928.pdf

Springer.Neural.Information.Processing.Part.IV.3319700928.pdf

2018-10-09

Springer.Neural.Information.Processing.Part.III.3319700898.pdf

Springer.Neural.Information.Processing.Part.III.3319700898.pdf

2018-10-09

Springer.Neural.Information.Processing.Part.II.3319700952.pdf

Springer.Neural.Information.Processing.Part.II.3319700952.pdf

2018-10-09

Cmd Markdown 公式指导手册

Cmd Markdown 公式指导手册

2018-10-04

Scala.for.the.Impatient.2nd.Edition.2016.12.pdf(带书签)

Scala.for.the.Impatient.2nd.Edition.2016.12.pdf(带书签)

2018-09-23

Nginx高性能Web服务器详解_13421548.pdf

Nginx高性能Web服务器详解_13421548.pdf

2018-09-23

Java秋招复习资料 interview-notebook.pdf

interview-notebook.pdf Java秋招复习资料

2018-09-23

浙江人民-成为数据分析师:6步练就数据思维.201802.epub浙江人民-成为数据分析师:6步练就数据思维.201802.epub

浙江人民-成为数据分析师:6步练就数据思维.201802.epub

2018-09-23

Artificial Unintelligence_How Computers Misunderstand the World-MIT(2018).epub

Artificial Unintelligence_How Computers Misunderstand the World-MIT(2018).epub

2018-09-23

腾讯课堂视频下载工具V1.7.rar

腾讯课堂视频下载工具V1.7.rar

2018-09-23

TensorFlow_Powerful Predictive Analytics with TensorFlow(2018) 书和代码

TensorFlow_Powerful Predictive Analytics with TensorFlow-Packt Publishing(2018) 书和代码

2018-09-05

Deep Learning Vol 1 From Basics to Practice_带书签.pdf

Deep Learning Vol 1 From Basics to Practice_带书签.pdf

2018-09-05

Sanet.st_Deep_Learning,_Vol._2_From_Basics_to_Practice_-_Andrew_Glassner_带书签.pdf

Sanet.st_Deep_Learning,_Vol._2_From_Basics_to_Practice_-_Andrew_Glassner_带书签.pdf

2018-09-05

2018名企校招笔试真题精选技术篇.pdf

2018名企校招笔试真题精选技术篇.pdf

2018-09-05

自己动手做大数据系统.azw3

目前很多想学习或正在学习大数据的人,大都面临一些问题或困惑,本书的第一个特点就是系统性,覆盖了如何利用爬虫、Sqoop等获取各种数据,如何利用HDFS、HBase等存储大数据,如何利用MapReduce、Hive、Pig、Python、Spark等技术来处理大数据,如何利用Spark及R分析展示大数据整个过程,而且这些过程我们都可以以实战项目的方式在云平台上完成,这又体现出本书的第二个特点,即操作的便捷性。 如果你是一位在校大学生,对大数据感兴趣,也知道使用的企业越来越多,市场需求更是日新月异,但苦于自己基础不够,心有余而力不足;也看过不少大数据方面的书籍、博客、视频等,但感觉进步不大;如果你是一位在职人员,但目前主要使用传统技术,虽然对大数据很有兴趣,也深知其对未来的影响,但因时间不够,虽有一定的基础,常常也是打两天鱼、晒三天网,进展不是很理想。, 如果你有上述疑惑或遇到相似问题,《自己动手做大数据系统》正好比较适合你。《自己动手做大数据系统》从OpenStack云平台搭建、软件部署、需求开发实现到结果展示,以纵向角度讲解了生产性大数据项目上线的整个流程;以完成一个实际项目需求贯穿各章节,讲述了Hadoop生态圈中互联网爬虫技术、S qoop、Hive、HBase组件协同工作流程,并展示了Spark计算框架、R制图软件和SparkRHive组件的使用方法。《自己动手做大数据系统》的一大特色是提供了实际操作环境,用户可以在线登录云平台来动手操作书中的数据和代码,登录网址请参考http://www.feiguyun.com/support。

2018-09-05

2018-Java最全面试资料.doc

2018-Java最全面试资料.doc 2018-Java最全面试资料.doc 2018-Java最全面试资料.doc

2018-07-13

机器学习小抄-Chris Albon.pdf

机器学习小抄-Chris Albon.pdf 机器学习小抄-Chris Albon.pdf

2018-07-13

Beginning Application Development with TensorFlow and Keras

Beginning Application Development with TensorFlow and Keras.epub

2018-06-17

Big Data Principles and best practices of scalable realtime data systems.pdf

Big Data Principles and best practices of scalable realtime data systems.pdf

2018-05-25

Deep Learning in Natural Language Processing-Springer(2018).pdf

Deep Learning in Natural Language Processing-Springer(2018).pdf

2018-05-25

Introduction to Deep Learning Business Applications for Developers(2018)

Introduction to Deep Learning Business Applications for Developers-Apress(2018).pdf

2018-05-06

Computer Systems_A Programmer’s Perspective, 3rd Edition

Computer Systems_A Programmer’s Perspective, 3rd Edition-Pearson(2015).epub

2018-05-05

空空如也

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

TA关注的人

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