1、题目 Given an unsorted array, find the maximum difference between the successive elements in its sorted form. Try to solve it in linear time/space. Re ...
分类:
编程语言 时间:
2017-04-12 09:27:28
阅读次数:
245
本文转自;https://msdn.microsoft.com/en-us/library/hh264221.aspx A project can be built to run on a target framework, which is a particular version of the ...
分类:
其他好文 时间:
2017-04-12 09:27:14
阅读次数:
232
前几篇博客已经陆陆续续的聊了一些Spring的东西,今天博客我们就来聊一下SpringMVC。SpringMVC目前在JavaEE开发中可谓占据一席之地,用起来也是比较顺手的。低耦合,高内聚,利用一些注解以及Java配置类就能很好的实现解耦。今天我们就来看一下如何使用Maven来配置SpringMV ...
分类:
编程语言 时间:
2017-04-12 09:26:53
阅读次数:
317
返回数字的绝对值。參数能够是整数或浮点数。假设參数是复数,则返回复数的模。因此abs()函数的注意点就是复数的不一样计算方式。样例:#正整数 print('abs(1):', abs(1)) #负整数 print('abs(-1):', abs(-1)) #负浮点数 print('abs(-10.5 ...
分类:
编程语言 时间:
2017-04-12 09:26:25
阅读次数:
244
# part_indexer 对文章根据id的hash进行分块索引- 持有 search_index _inc_index[2]; search_index _history_index[2]; 进行实际的搜索操作- get_size 调用search_index的search- get_all_i ...
分类:
其他好文 时间:
2017-04-12 09:26:07
阅读次数:
179
sys.c 代码分析 setregid /* * This is done BSD-style, with no consideration of the saved gid, except * that if you set the effective gid, it sets the saved ...
分类:
系统相关 时间:
2017-04-12 09:25:33
阅读次数:
356
@ContextConfiguration Spring整合JUnit4测试时,使用注解引入多个配置文件单个文件 @ContextConfiguration(Locations="../applicationContext.xml") @ContextConfiguration(classes = ...
分类:
其他好文 时间:
2017-04-12 09:25:16
阅读次数:
111
1. 启动Jmeter 2. 添加 DBC Connection Configuration 右键线程组->添加->配置元件->JDBC Connection Configuration 添加后进行必要的配置 3. 添加参数化所需变量 配置 4. 添加JDBC Request 右键线程组->添加-> ...
分类:
数据库 时间:
2017-04-12 09:24:39
阅读次数:
246
一、SQLServer时间日期函数详解 1. 当前系统日期、时间 select getdate() 2. dateadd 在向指定日期加上一段时间的基础上,返回新的 datetime 值 例如:向日期加上2天 select dateadd(day,2,'2004-10-15') --返回:2004- ...
分类:
数据库 时间:
2017-04-12 09:24:20
阅读次数:
252
本节内容: 面向对象编程介绍 为什么要用面向对象进行开发? 面向对象的特性:封装、继承、多态 类、方法。 转载: http://www.cnblogs.com/alex3714/articles/5188179.html http://www.cnblogs.com/alex3714/article ...
分类:
编程语言 时间:
2017-04-12 09:24:07
阅读次数:
264
最近一直在搞基于springcloud的微服务开发,为了不限定微服务开发语言,服务发现决定采用consul不多说上代码 pom文件 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001 ...
分类:
编程语言 时间:
2017-04-12 09:23:28
阅读次数:
4302
1. Promise用法 js异步调用较多,如果某个操作是基于上个异步结果才能执行的,再有一个操作又是基于此操作的,则需要嵌套多层代码,在ES6中引入了Promise写法,可以比较优雅的解决这个问题: 输出的结果是: 只需要看最后几行就可以,第一个then接收runAsync1的返回值data1可以 ...
分类:
Web程序 时间:
2017-04-12 09:23:07
阅读次数:
212
前面学习了理论,下面该练练手了。两台机器:10.1.6.186、10.1.6.159。fabric部署在10.1.6.186上面。 1 执行一个简单的task任务,显示两台机器的/home/guol/目录下的文件 2 执行和1相同的任务,不过排除掉10.1.6.159这台机器 3 执行和2相同任务, ...
分类:
编程语言 时间:
2017-04-12 09:22:18
阅读次数:
360
1 2 ...
分类:
其他好文 时间:
2017-04-12 09:22:03
阅读次数:
156
键盘按键和键盘对应代码表: 字母A <--> 65 B <--> 66 C <--> 67 D <--> 68 E <--> 69 F <--> 70 G <--> 71 H <--> 72 I <--> 73 J <--> 74 K <--> 75 L <--> 76 M <--> 77 N <- ...
分类:
其他好文 时间:
2017-04-12 09:21:14
阅读次数:
156
利用泠备份恢复standby数据库 1 開始在备库上进行泠备份先查好控制文件、redo、undo文件、数据文件的路径 1.1 先关闭主库的归档日志传输SQL> ALTER system SETlog_archive_dest_state_2 ='DEFER'; System altered. SQL ...
分类:
数据库 时间:
2017-04-12 09:20:43
阅读次数:
294
xml中含有命名空间后,用普通的xpath只能筛选到根结点 需要在map里加一个xml的namespace 然后再装载XML文件 编写xpath时要带要上xmlns 原来是这样写:document.selectNodes("/book/formerAidText/title") 加上xmlns后:d ...
分类:
其他好文 时间:
2017-04-12 09:20:30
阅读次数:
171