入门客AI创业平台(我带你入门,你带我飞行)
博客笔记
17
2016-04
linux下C实现对键盘事件的监听(按下键盘的时候程序立刻读取) 2016-04-17
#include #include int scanKeyboard() { int in; struct termios new_settings; struct termios stored_settings; tcgetattr(0,&stored_settings); new_settings = stored_settings; new_settings.c_lflag &= (~I
17
2016-05
LeetCode- 238. Product of Array Except Self 2016-05-17
Problem: Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i]. Solve it without division
16
2015-09
Product of Array Except Self 2015-09-16
Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i]. Solve it without division
20
2017-12
数据结构实验之排序二:交换排序 2017-12-20
数据结构实验之排序二:交换排序 Time Limit: 1000MS Memory Limit: 65536KB Submit Statistic Problem Description 冒泡排序和快速排序都是基于”交换”进行的排序方法,你的
16
2018-04
vue 常用UI库 2018-04-16
UI组件element ★9305 - 饿了么出品的Vue2的web UI工具套件Vux ★6802 - 基于Vue和WeUI的组件库mint-ui ★4776 - Vue 2的移动UI元素iview ★4458 - 基于 Vuejs 的开源 UI 组
21
2015-12
浅谈卫星电视接收 2015-12-21
这篇博客所讲的是关于卫星电视接收的一些基础知识,不一定多么详细,但是能够把整个框架理清楚。 首先从卫星satellite讲起,卫星的作用是转发,通过卫星

			
				深度学习BP算法的推导(附加RNN,LSTM的推导说明)
深度学习BP算法的推导(附加RNN,LSTM的推导说明) 2014-12-09
注:1)这篇文章主要参考Alex Graves的博士论文《Supervised Sequence Labelling with Recurrent Neural Networks》 详细介绍其关于BP算法的推导过程。          2)论文
12
2017-12
SLS测试简介 2017-12-12
sls是Scheduler Load Simulator的缩写,是一个用来测试yarn调度器性能的工具。其实,若想完成测试,一共需要用到两个工具:Hadoop Rumen和SLS,下面逐个介绍。
15
2015-01
CollectionUtils.isNotEmpty 2015-01-15
项目中引用的明明是commons.collections-3.2.1.jar (3.2版的),但服务器启动后,调用CollectionUtils.isNotEmpty 方法时, 却总是报 NoSuchMethodError: org.apache.commons.collections.Co
25
2018-04
Hibernate中@NotBlank @NotEmpty @NotNull的区别 2018-04-25
用于接收前端POST请求参数的VO:public class BatchAuthVO { /** 用户信息 */ @NotEmpty(message = "aca.auth.batchAuth.personList.null") private List personList; /** 已授权开