public class Solution { public int findPeakElement(int[] nums) { if (nums == null || nums.length == 0 || nums.length == 1) { retu...
分类:
其他好文 时间:
2015-05-19 12:39:23
阅读次数:
80
分类:
其他好文 时间:
2015-05-19 12:38:55
阅读次数:
95
关于SQL Server Profiler的使用,网上已经有很多教程,比如这一篇文章:SQL Server Profiler:使用方法和指标说明。微软官方文档:https://msdn.microsoft.com/zh-cn/library/ms179428(v=sql.105).aspx有更详细的...
分类:
数据库 时间:
2015-05-19 12:36:33
阅读次数:
257
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:
其他好文 时间:
2015-05-19 12:37:23
阅读次数:
106
Mustache 使用心得总结前言:之前的一个项目里面就实用到这个前台的渲染模版,当时挺忙的也没时间抽出时间总结一下,刚好上周项目里又用到这个轻量型的渲染模版,真心感觉非常好用,因此就总结一下使用心得,算是一个入门级别的指引吧。1. Mustache 概述Mustache是基于JavaScript实...
分类:
其他好文 时间:
2015-05-19 12:37:12
阅读次数:
133
解决 RDLC 报表自动分页表头显示问题原文:http://www.th7.cn/Program/net/201207/85445.shtmlRDLC是用XML来描述一个报表相关的一切,只需要在节点添加true子节点就可以,并设定值为true.有些朋友在VS环境中无法打开XML编辑方式,这里我提示一...
分类:
其他好文 时间:
2015-05-19 12:37:41
阅读次数:
258
Given a 2D board and a list of words from the dictionary, find all words in the board.Each word must be constructed from letters of sequentially adjac...
分类:
其他好文 时间:
2015-05-19 12:36:18
阅读次数:
126
以后随着使用的maven的频率增加,此文件会越来越大,也是为什么需要把默认C:\Users\Administrator\.m2 \repository目录改变为D:/OpenSources/repository(1,C盘空间不足2,系统出现问题,重装本地仓库被覆盖)一、EclipseMaven插件安...
分类:
其他好文 时间:
2015-05-19 12:35:12
阅读次数:
133
1.CGPoint/NSPoint :表示坐标点的创建:CGPoint *cp=NSMakePoint(10,10) //x,y 或 NSPonit *cp=CGPointMake(10,10)2.CGSize/NSSize : 用来表示尺寸的创建: CGSize *s=NSMakeSize(10....
分类:
其他好文 时间:
2015-05-19 12:35:47
阅读次数:
111
转自:https://blog.shonenada.com/post/websocket-with-flask/WebSocket with FlaskHTML5 以前,HTML 还不支持WebSocket,当时如果要进行实时的内容更新,要么使用Ajax轮询(Polling)或者使用Comet技术。...
分类:
Web程序 时间:
2015-05-19 12:35:25
阅读次数:
286
博客详解:http://www.cnblogs.com/huangxincheng/archive/2012/11/25/2788268.htmlhttp://eriol.iteye.com/blog/1166118http://www.360doc.com/content/12/1116/15/9...
分类:
其他好文 时间:
2015-05-19 12:35:47
阅读次数:
176
PHP使用到两个比较重要的配置文件:php.ini:决定php语言运行的环境,支持扩展的模块 , 开发环境的配置。(路径一般位于/etc/php.ini 或 /usr/local/php/etc/php.ini)php-fpm.conf:进程控制管理器配置文件,控制php-cgi的进程数,常驻内存,...
分类:
Web程序 时间:
2015-05-19 12:36:54
阅读次数:
132
原文地址:http://blog.callmewhy.com/2014/10/08/uialertcontroller-swift-closures-enum/在 iOS8 的 SDK 中, UIKit 框架里两个经常使用的 API 有了比較大的修改。UIActionSheet 和 UIAlertV...
分类:
编程语言 时间:
2015-05-19 12:34:36
阅读次数:
162
最近在中标麒麟上面工作,结果发现上面gcc都没有,没有办法只好自己装(PS 中标麒麟:怪我咯) 资源:http://download.csdn.net/detail/jiahuat/8715413 按照里面的help做就ok了! 注意:安装顺序不能错,否则后果很严重;如果错了,可以用 ...
分类:
其他好文 时间:
2015-05-19 12:34:54
阅读次数:
126
使用spark.streaming.receiver.maxRate这个属性限制每秒的最大吞吐。官方文档如下:Maximum rate (number of records per second) at which each receiver will receive data. Effective...
分类:
其他好文 时间:
2015-05-19 12:36:22
阅读次数:
226
1.找到所有 p 元素,并且这些元素都必须是 div 元素的子元素。$("div > p");2.设置页面背景色$(document.body).css( "background", "black" );3.隐藏一个表单中所有元素。$(myForm.elements).hide();4.在文档的第一...
分类:
Web程序 时间:
2015-05-19 12:35:33
阅读次数:
170
threading模块import timeimport randomimport threadingclass Inclass: def __init__(self): print 'Inclass 初始化' def execIn(self,i): rand...
分类:
编程语言 时间:
2015-05-19 12:34:01
阅读次数:
131