首页 > 2017年05月07日 > 全部分享
一个屌丝程序猿的人生(六十五)
项目演示当天!  教室里一大早就热闹非凡。  张建派的人此刻已经聚集在一起,开始探讨起接下来的战术。  “弟兄们,今天就要开战了啊。”  “是啊!想想还真有些小激动呢!”  “对了,张建人呢?”  “...
分类:其他   时间:2017-05-07 21:55:12    收藏:0  评论:0  赞:0  阅读:198
轻松看懂机器学习十大常用算法
通过本篇文章可以对ML的常用算法有个常识性的认识,没有代码,没有复杂的理论推导,就是图解一下,知道这些算法是什么,它们是怎么应用的,例子主要是分类问题。每个算法都看了好几个视频,挑出讲的最清晰明了有趣...
分类:编程语言   时间:2017-05-07 21:54:58    收藏:0  评论:0  赞:0  阅读:272
一文贯通python文件读取
不论是数据分析还是机器学习,乃至于高大上的AI,数据源的获取是所有过程的入口。读取文件的操作,文件有各种各样的格式:文本,音视频,pdf,word,excel等等...... Life is shor...
分类:编程语言   时间:2017-05-07 21:54:45    收藏:0  评论:0  赞:0  阅读:355
C# 中串口通信 serialport1.DataReceived 函数无法触发或者出发延时等等问题解决方法
以前这个问题困扰我多天最后查资料一大堆,最后最终攻克了,看到非常多人做C#串口都遇到相同的问题,所以写一篇博文,以便学习交流。 一定要在com实例化的时候设置ReceivedBytesThreshold 属性就能够 SerialPort com = new SerialPort(); com.Bau ...
分类:Windows开发   时间:2017-05-07 21:53:55    收藏:0  评论:0  赞:0  阅读:863
【Spark深入学习 -10】基于spark构建企业级流处理系统
本节内容 1.流式处理系统背景 1.1 技术背景 1.2 Spark技术很火 2.流式处理技术介绍 2.1流式处理技术概念 2.2流式处理应用场景 2.3流式处理系统分类 3.流式处理技术关键技术 3.1流式处理系统管道构建 3.2流式处理系统关键技术 3.3用户行为分析系统介绍 4.问题答疑 5. ...
分类:其他   时间:2017-05-07 21:53:30    收藏:0  评论:0  赞:0  阅读:373
【LeetCode】241. Different Ways to Add Parentheses
题目: Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators ...
分类:其他   时间:2017-05-07 21:53:03    收藏:0  评论:0  赞:0  阅读:249
Spark-shell 启动WARN---java.net.BindException: Address already in use
同时打开了两个SecureCRT的终端界面,其中一个已经进入了Spark-shell,在另一个SecureCRT界面中执行 "spark-shell --master yarn --deploy-mode client < cha02.scala" 时报错,如下: [root@master test ...
分类:编程语言   时间:2017-05-07 21:52:40    收藏:0  评论:0  赞:0  阅读:1094
你真的会用Gson吗?Gson使用指南(2)
注:此系列基于Gson 2.4。 上一篇文章 你真的会用Gson吗?Gson使用指南(1) 我们了解了Gson的基础用法,这次我们继续深入了解Gson的使用方法。 本次的主要内容: Gson的流式反序列化 Gson的流式序列化 使用GsonBuilder导出null值、格式化输出、日期时间及其它小功 ...
分类:其他   时间:2017-05-07 21:52:25    收藏:0  评论:0  赞:0  阅读:349
【Lintcode】038.Search a 2D Matrix II
题目: Write an efficient algorithm that searches for a value in an m x n matrix, return the occurrence of it. This matrix has the following properties: ...
分类:其他   时间:2017-05-07 21:51:54    收藏:0  评论:0  赞:0  阅读:286
java 多线程面试题
0、Java中多线程同步是什么? 在多线程程序下,同步能控制对共享资源的访问。如果没有同步,当一个Java线程在修改一个共享变量时,另外一个线程正在使用或者更新同一个变量,这样容易导致程序出现错误的结果。 1、解释实现多线程的几种方法? Java线程可以实现Runnable接口或者继承Thread类 ...
分类:编程语言   时间:2017-05-07 21:51:31    收藏:0  评论:0  赞:0  阅读:318
【LeetCode】064. Minimum Path Sum
题目: Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its pa ...
分类:其他   时间:2017-05-07 21:51:15    收藏:0  评论:0  赞:0  阅读:195
POJ2421 Constructing Roads
Constructing Roads 这道题很水,就是一个裸的最小生成树,最不过把已经连接的节点的值再设为0。 代码: 1 #include<cstdio> 2 #include<cstring> 3 #define N 1010 4 int dis[N][N],minn[N],n,m,a,b; 5 ...
分类:其他   时间:2017-05-07 21:50:49    收藏:0  评论:0  赞:0  阅读:305
[leetcode]Subsets II
问题描写叙述: Given a collection of integers that might contain duplicates, S, return all possible subsets. Note: Elements in a subset must be in non-descen ...
分类:其他   时间:2017-05-07 21:50:37    收藏:0  评论:0  赞:0  阅读:323
FastJson、Jackson、Gson进行Java对象转换Json的细节处理
前言 Java对象在转json的时候,如果对象里面有属性值为null的话,那么在json序列化的时候要不要序列出来呢?对比以下json转换方式 一、fastJson 1、fastJson在转换java对象为json的时候,默认是不序列化null值对应的key的 也就是说当对象里面的属性为空的时候,在 ...
分类:编程语言   时间:2017-05-07 21:50:23    收藏:0  评论:0  赞:0  阅读:375
【Spark 深入学习 -09】Spark生态组件及Master节点HA
本节内容 1.Spark背景介绍 2.Spark是什么 3.Spark有什么 4.Spark部署 4.1.Spark部署的2方面 4.2.Spark编译 4.3.Spark Standalone部署 4.4.Standalone HA配置 4.5.伪分布式部署 5.Spark任务提交 5.1.Spa ...
分类:其他   时间:2017-05-07 21:49:53    收藏:0  评论:0  赞:0  阅读:478
你真的会用Gson吗?Gson使用指南(1)
JSON (官网) 是一种文本形式的数据交换格式,它比XML更轻量、比二进制容易阅读和编写,调式也更加方便。其重要性不言而喻。解析和生成的方式很多,Java中最常用的类库有:JSON-Java、Gson、Jackson、FastJson等。 注:此系列基于Gson 2.4。 对Gson使用很自信的大 ...
分类:其他   时间:2017-05-07 21:49:43    收藏:0  评论:0  赞:0  阅读:424
Tarjan强联通分量【模板】
1 #include 2 #include 3 4 using namespace std; 5 6 const int N(100015); 7 int n,m,v,u; 8 int edgesum,head[N]; 9 10 struct Edge 11 { 12 int from,to,nex... ...
分类:移动平台   时间:2017-05-07 21:49:24    收藏:0  评论:0  赞:0  阅读:317
【Lintcode】028.Search a 2D Matrix
题目: Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row are sort ...
分类:其他   时间:2017-05-07 21:48:59    收藏:0  评论:0  赞:0  阅读:274
Json,Gson,FastJson解析笔记
Json 1.将JavaBean转换成Json对象: [java] view plain copy public static String CreatJsonFromObject(Object key,Object value) { JSONObject JObj =new JSONObject( ...
分类:Web开发   时间:2017-05-07 21:48:23    收藏:0  评论:0  赞:0  阅读:455
团队作业6——展示博客(Alpha版本)
展示博客 1.团队成员的简介和个人博客地址,团队的源码仓库地址。 代码git链接: https://git.coding.net/NianQiFeng/szys.git 余洋博客:http://www.cnblogs.com/yuyang1003/ 邱文鑫博客:http://www.cnblogs. ...
分类:其他   时间:2017-05-07 21:48:02    收藏:0  评论:0  赞:0  阅读:386
1574条   上一页 1 ... 9 10 11 12 13 ... 79 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!