Unit05: 集合操作 —— 查找表 使用该类测试自定义元素的集合排序 package day05; /** * 使用该类测试自定义元素的集合排序 * @author adminitartor * */ public class Point implements Comparable<Point> ...
分类:
编程语言 时间:
2016-12-29 03:16:17
阅读次数:
247
前言: 目录: 1.串类型的定义 2.串的表示和实现 3.串的模式匹配算法 4.串操作应用举例 正文: 串的模式匹配即,在给定主串S 中,搜索子串T 的位置,如果存在T 则返回其所在位置,否则返回 0 串的模式匹配算法 主串 S: a b c a b c d s v t 子串 T: a b c d ...
分类:
编程语言 时间:
2016-12-29 03:18:14
阅读次数:
222
/*********************************************************************************************************** uC/OS-II* The Real-Time Kernel* EVENT FLA ...
分类:
其他好文 时间:
2016-12-29 03:15:06
阅读次数:
205
linux 中printf的使用printf "helloworld\n"printf 中换行必须加上\n printf '%d %s\n' 1 "abc" chenxy@ubuntu:~/linux$ a=2chenxy@ubuntu:~/linux$ printf 'a is %s\n' $aa ...
分类:
系统相关 时间:
2016-12-29 03:15:37
阅读次数:
227
5.1 表单使用5.1.1 action 和 method 特性 如果没有 method 默认是: get 方法。5.1.2 GET方法还是POST方法5.2 HTML辅助方法5.3 其他输入辅助方法 5.4 渲染辅助方法 来自为知笔记(Wiz) ...
分类:
Web程序 时间:
2016-12-29 03:15:32
阅读次数:
341
1 function $$(selector,context){ 2 context=context||document; 3 var elements=context.querySelectorAll(selector); 4 return Array.prototype.slice.call(e... ...
分类:
Web程序 时间:
2016-12-29 03:15:13
阅读次数:
162
所谓的单元测试(Unit Test),就是对软件的一些模块进行测试以检查其正确性和可靠性,这些模块可以是一个类或者是一个方法等。在Visual studio中,这十分容易实现。 打开Visual studio,文件->新建->项目,在此演示的是为通用Windows平台创建单元测试,因此展开Visua ...
分类:
其他好文 时间:
2016-12-29 03:13:50
阅读次数:
445
浮点数值不适用于禁止出现舍入误差的金融计算中。例如,命令System.out.println(2.0-1.1)将打印出0.8999999999999999999999999,而不是人们想象的0.9。其主要原因是浮点数值采用二进制系统表示,而在二进制系统中无法精确的表示分数1/10。这就好像十进制无法 ...
分类:
编程语言 时间:
2016-12-29 03:12:54
阅读次数:
160
################################################################################ uC/OS-II# The Real-Time Kernel# # (c) Copyright 2002, Jean J. Labross ...
分类:
其他好文 时间:
2016-12-29 03:11:29
阅读次数:
282
中文快速入门: http://coolshell.cn/articles/3643.html 进阶: 多线程怎么调试: 分 all-stop 和 non-stop 两个模式。 all-stop 模式下,一个断点。所以线程全部终止运行。 使用 set non-stop on命令可以进入non-stop ...
分类:
数据库 时间:
2016-12-29 03:10:50
阅读次数:
277
transition过渡 transition-duration:; 运动时间 transition-delay:; 延迟时间 transition-timing-function:; 运动形式 ease 逐渐变慢 (默认) linear 匀速 ease-in 加速 ease-out 减速 ease ...
分类:
Web程序 时间:
2016-12-29 03:12:40
阅读次数:
254
1. Introduction The Springfox suite of java libraries are all about automating the generation of machine and human readable specifications for JSON AP ...
分类:
编程语言 时间:
2016-12-29 03:13:10
阅读次数:
1434
1.html超文本标记语言 2.在html中存在着大量的标签,我们用html中存在的标签将要显示在网页的内容包含起来。 3.css 控制网页显示内容的效果。 4.html+css 只能是静态网页。 5.js+jquery动态的效果。 开始动手 1.首先在桌面上随便的建一个文件。 2.将创建的文件改成 ...
分类:
编程语言 时间:
2016-12-29 03:11:56
阅读次数:
188
目录...................................................... .00x1 可变函数 .00x2 回调函数 .00x3 . ........................................................... 00x ...
分类:
Web程序 时间:
2016-12-29 03:10:38
阅读次数:
203
module.exports = function(req, res, opt) { var applyNo = req.query.applyNo; console.log("applyNo:"+applyNo); var file = path.resolve(__dirname, "../..... ...
分类:
其他好文 时间:
2016-12-29 03:08:34
阅读次数:
292
1.增强学习 http://www.wildml.com/2016/10/learning-reinforcement-learning/ 2.RNN 别人的博客目录: 1.学些增强学习(通过代码,练习和问题的解决方案) 2.TensorFlow中的RNN,实践指南,没有被记录的特性 TensorF ...
分类:
其他好文 时间:
2016-12-29 03:09:40
阅读次数:
235
微信公众号JSSDK发起支付时: 原因一: 注入配置时 wx.config(); 不能将使用以下方式: wx.ready(function(){ var configs = {...}; wx.config(configs); }); wx.ready(function(){ wx.config({ ...
分类:
移动开发 时间:
2016-12-29 03:10:32
阅读次数:
2339