自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

用时间去蜕变

制怒、自省

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

原创 【隐式图搜索遍历学习】倒牛奶

DFS:#include#include#include#includeusing namespace std;long ans[50], p = -1;long a, b, c; //各桶上限 bool found[50][50][50]; //搜索记录 bool isln(int C) //判断是否

2014-02-25 16:53:16 1062

原创 【搜索】BFS、DFS的综合练习(小鼠迷宫)

分析:利用bfs可以计算出最短路径的距离len(即移动次数),然后用dfs计算出等于len(移动次数)时有多少种不同的最短路径。 #include#include#include#includeusing namespace std;#define N 100int mark[N][N], map[N][N];struct node{ int x, y; int st

2014-02-21 16:21:50 728

原创 【bfs学习】最优程序

#include#include#include#include#include using namespace std;const int MAX_OPT = 100;int opt[MAX_OPT];char opt_name[][5] = { "ADD", "SUB", "SUL", "DIV", "DUP" }; //记录操作名称int a, b;struct no

2014-02-19 17:27:10 778

原创 【贪心算法初学】删数问题

题目:键盘输入一个高精度的正整数n(位),去掉任意s个数字后剩下的数字按原左右次序将组成一个新的正整数。编程对给定的n和s,寻找一种方案,使得剩下的数最小。Simple Input 178543 4Simple Output 13  首先:N超过200位,肯定要用字符串数组来进行存储。我们知道字符串数组隐含的'\0'作为结束符。当然,我们也可以用st

2014-02-15 13:25:35 2248

转载 也谈谈数据结构和算法,说与立志当好程序员的

曾经有个说法,程序=数据结构+算法。这在面向过程的编程语言流行的年代是很受推崇的。然而,随着时代的发展,各种编程语言的出现,各种编程模式的发明,面向对象、设计模式、框架、模型等各种概念早已淹没了当年那个简单的提法。那么,在这个多样化的年代,如果想立志做编程开发,还有没有必要学好数据结构和算法呢?我的回答是,非但有必要,更应该学好、学博、学精。第一,数据结构与算法是程序的

2014-02-12 11:22:01 1177

转载 已知二叉树的前序/后序遍历和中序遍历,求后序/前序遍历

首先,让我们先看看三种遍历的特性:  1、前序遍历:              1)访问根节点。   2)前序遍历左子树。    3)先序遍历右子树。  2、中序遍历:             1)中序遍历左子树。  2)访问根节点。   3)中序访问右子树。  3、后序遍历:             1)后序遍历左子树。   2)后序遍历右子树。 3)访问根节点。

2014-02-07 22:17:12 1220

原创 【数据结构学习】中缀表达式转后缀表达式

后缀表达式,我们亦称其为逆波兰序数。在咱们编写计算器的时候,总会要用双栈模拟,进行计算。       本题所描绘的中缀转后缀,只是很简单的转。并不能达到写计算器的目的,本文在此只用于个人的基础巩固,以及浅层次的思考,帮助进行中缀表达式转后缀表达式的理解。      中缀表达式如1*2+(2-1),其运算符一般出现在操作数之间, 因此称为中缀表达式,也就是大家编程中写的表达式。编译系统不考虑

2014-02-07 14:15:17 1311

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

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

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

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

自己动手做大数据系统.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

计算机网络(第7版) ("十二五"普通高等教育本科国家级规划教材)

计算机网络(第7版) ("十二五"普通高等教育本科国家级规划教材)_2791327.epub

2018-05-05

Optimizing Java_Practical Techniques for Improving JVM Application Performance

Optimizing Java_Practical Techniques for Improving JVM Application Performance(2018.05).A4.pdf 预览文字版 Currently, no books exist that focus on the practicalities of Java application performance tuning, as opposed to the theory and internals of Java virtual machines. This practical guide is the "missing link" that aims to move Java performance tuning from the realm of guesswork and folklore to an experimental science.

2018-04-25

Python高性能编程.pdf 中文版

Python高性能编程.pdf 中文版 高清true pdf。 全彩带目录

2018-04-20

Deep Learning Quick Reference-Packt(2018)电子书和配套代码

Deep Learning Quick Reference-Packt Publishing(2018) 电子书和配套代码

2018-04-19

Zoneout Regularizing RNNs by Randomly Preserving Hidden Activations

Zoneout Regularizing RNNs by Randomly Preserving Hidden Activations

2018-04-18

人民邮电(图灵)-图解物联网-完美去广告版本

人民邮电(图灵)-图解物联网.201704.pdf 资源来源: https://download.csdn.net/download/towangjindian/10332890 水印删的我肝疼。分数要高点

2018-04-12

空空如也

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

TA关注的人

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