Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole array will be ...
分类:
编程语言 时间:
2017-10-15 21:30:34
阅读次数:
213
为了安全:服务启动的ip全部使用10.10.10.10 远程服务的暴露总体步骤: 将ref封装为invoker 将invoker转换为exporter 启动netty 注册服务到zookeeper 订阅 返回新的exporter实例 服务远程暴露的代码: 首先将实现类ref封装为Invoker,之后 ...
分类:
Web程序 时间:
2017-10-05 13:08:09
阅读次数:
214
Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equals to k. Example 1: Note: 题目标签:Ar ...
分类:
编程语言 时间:
2017-10-05 00:51:33
阅读次数:
416
Spring MVC是现在新项目中使用最多的MVC框架,超越了Structs2成为MVC框架的首选。今天抽时间看了4.2.x的官网翻译文档及相关代码,博客,将印象比较深的几点记录一下。 一、应用Spring MVC 首先引入相关依赖,以maven项目管理为例,先在pom.xml引入spring-co ...
分类:
编程语言 时间:
2017-09-24 00:33:39
阅读次数:
153
1. s='''Beat It - Michael JacksonThey Told Him Don't You Ever Come Around HereDon't Wanna See Your Face You Better DisappearThe Fire's In Their Eyes A ...
分类:
其他好文 时间:
2017-09-20 23:12:20
阅读次数:
117
Given an array of integers, 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements that appear twi ...
分类:
编程语言 时间:
2017-09-20 10:15:17
阅读次数:
208
1. 设定计时器相关属性,使用委托方法处理事件触发 DispatcherTimer dispatcherTimer= new DispatcherTimer(); dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);dispa ...
分类:
其他好文 时间:
2017-09-12 16:05:42
阅读次数:
177
Bean是Spring对象的声明(装配wiring),要使用Spring,必须先装配需要使用的对象,有3种装配的方式 自动化装配Bean 自动化装配Bean很简单 1.声明接口 2.添加注解 @Component表明该类会作为组件类,并告知Spring要为这个类创建Bean。 3.增加配置,用于连接 ...
分类:
编程语言 时间:
2017-08-30 19:58:24
阅读次数:
207
disabled=false
group_name=group1
bind_addr=172.1.1.1
client_bind=true
port=23000
connect_timeout=30
network_timeout=60
heart_beat_interval=30
stat_report_interval=60
base_path=/data/fastdfs
max_connections=256
buff_size=256KB
accept_threads=1
work_threads=4..
分类:
其他好文 时间:
2017-08-29 09:31:38
阅读次数:
250
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your algorithm to us ...
分类:
其他好文 时间:
2017-08-27 12:49:16
阅读次数:
157