1 /** 2 * @author 黄志伟 3 */ 4 public class QuickSort { 5 public static void main(String[] args) { 6 int [] array = {49,38,65,97,76,13,13...
分类:
编程语言 时间:
2015-07-14 07:32:13
收藏:
0 评论:
0 赞:
0 阅读:
219
---恢复内容开始---方法1:brute force 时间复杂度 O(n^2) 空间复杂度 O(1)public class Solution { public int maxSubArray(int[] nums) { if (nums == null || nums.length ...
分类:
其他 时间:
2015-07-14 07:31:33
收藏:
0 评论:
0 赞:
0 阅读:
229
NAME users - print the user names of users currently logged in to the current hostSYNOPSIS users [OPTION]... [FILE]DESCRIPTION Outpu...
分类:
其他 时间:
2015-07-14 07:31:23
收藏:
0 评论:
0 赞:
0 阅读:
272
首先安装一些辅助的软件或者说是依赖的关系包。1.安装libxml2:libxml是一个用来解析XML文档的函数库。它用C语言写成, 并且能为多种语言所调用,例如C语言,C++,XSH。C#,Python,Kylix/Delphi,Ruby,和PHP等。Perl中也可以使用XML::LibXML模块。...
分类:
Web开发 时间:
2015-07-14 07:31:03
收藏:
0 评论:
0 赞:
0 阅读:
418
How to uncommit files that were committed long time a ago?Note: Since all changes in the current working directory are very important, they should not...
分类:
其他 时间:
2015-07-14 07:30:54
收藏:
0 评论:
0 赞:
0 阅读:
245
Question:Given an array of sizen, find the majority element. The majority element is the element that appears more than? n/2 ?times.You may assume tha...
分类:
其他 时间:
2015-07-14 07:30:43
收藏:
0 评论:
0 赞:
0 阅读:
241
My first thought made it unnecessarily difficult. Well, the correct solution falls into a typical pattern: use DP to calc cumulative results of each c...
分类:
其他 时间:
2015-07-14 07:30:33
收藏:
0 评论:
0 赞:
0 阅读:
406
我们知道InnoDB采用Write Ahead Log策略来防止宕机数据丢失,即事务提交时,先写重做日志,再修改内存数据页,这样就产生了脏页。既然有重做日志保证数据持久性,查询时也可以直接从缓冲池页中取数据,那为什么还...
分类:
数据库技术 时间:
2015-07-14 06:29:23
收藏:
0 评论:
0 赞:
0 阅读:
281
一、对test2的修改: 上节课的理解误区:EL表达式?${loginName}是进行接收数据的 要求:为index页面添加一个input标记,设置type属性添加一个文本框,要求在其中输入一段文字可以在跳转后的response页面中的文本...
分类:
Web开发 时间:
2015-07-14 06:29:14
收藏:
0 评论:
0 赞:
0 阅读:
477
UbuntuSubversionEdge5.0安装流程前言:对linux有一定基础即可,此安装流程我查看了N多教程后综合而来,将一些教程没提及的尽量补上,避免一些常见的错误,在此感谢各位前辈们的分享,原谅我没贴出各位的博客地址,也在此做个记录指不定以后还会用到。一般安装完后可能遇到的故..
分类:
Web开发 时间:
2015-07-14 06:28:14
收藏:
0 评论:
0 赞:
0 阅读:
430
服务端代码server.SimpleSocketServerpackageserver;
importjava.io.BufferedReader;
importjava.io.InputStream;
importjava.io.InputStreamReader;
importjava.io.OutputStream;
importjava.net.ServerSocket;
importjava.net.Socket;
importjava.util.Random;
publicclass..
分类:
Web开发 时间:
2015-07-14 06:28:04
收藏:
0 评论:
0 赞:
0 阅读:
493
1.TCP/IP协议在Internet中TCP/IP协议是使用最广泛的通讯协议。“传输控制协议/网际协议”/TransmissionControlProtocol/InternetProtocolTCP/IP实际上是一组协议,它包括上百个各种功能的协议。如:“远程登录”,“文件传输”等,而TCP协议和IP协议只是保证数据完整传输的两个..
分类:
编程语言 时间:
2015-07-14 06:27:54
收藏:
0 评论:
0 赞:
0 阅读:
179
软件版本:percona-xtrabackup-2.2.10mysql-5.6.23xtrabackup安装2.全备及恢复(1)全备查看数据库[root@local-dbopt]#innobackupex--defaults-file=/etc/my.cnf--user=root--password=123456/bak/mysql/该语句将拷贝数据文件(由my.cnf里的变量datadir指定)至备份目录下(/ba..
分类:
其他 时间:
2015-07-14 06:27:44
收藏:
0 评论:
0 赞:
0 阅读:
261
前言Ntop是一个基于libpcap开发的流量分析和flow收集系统,遵守GPLv3。版本分为pro与community版本,其中community为免费版,它的功能如下:.根据网络流量的使用状况来排序协议。.查看网络流量和IPv4/v6的活动主机。.数据以RRD格式存储在磁盘并可持续流量统计。.通过利用由谷歌..
分类:
其他 时间:
2015-07-14 06:27:34
收藏:
0 评论:
0 赞:
0 阅读:
428
less1a=/nihao/hao,/woshi/xing/,/zhende/sfd/xcvless1|grep‘a‘|awk-F"[=,]*"‘{for(i=2;i<=NF;++i)printf$i""}‘|xargsmkdir-p获取变量a的值,根据“,”分割创建目录
分类:
其他 时间:
2015-07-14 06:27:24
收藏:
0 评论:
0 赞:
0 阅读:
225
参考http://kinggoo.com/openldapinstallconf.htm参考http://linux.it.net.cn/CentOS/server/set/2014/1203/9510.html参考http://407711169.blog.51cto.com/6616996/1439944参考http://linuxadmin.blog.51cto.com/2683824/1615515参考http://ljl2013.blog.51cto.com/186072/134..
分类:
其他 时间:
2015-07-14 06:27:14
收藏:
0 评论:
0 赞:
0 阅读:
301
云计算服务除了提供计算服务外,还必然提供了存储服务。但是云计算服务当前垄断在私人机构(企业)手中,而他们仅仅能够提供商业信用。对于政府机构、商业机构(特别像银行这样持有敏感数据的商业机构)对于选择云计算服务应保持足够的警惕。一旦商业用户大规模使用私人机构提..
分类:
其他 时间:
2015-07-14 06:26:54
收藏:
0 评论:
0 赞:
0 阅读:
239
CentOS6.5实现LAMP+NFS双web服务负载均衡环境说明:CentOS6.5最小化安装,安装相应的组件:[root@http~]#yumgroupinstall-y"Developmenttools"[root@mysql~]#yumgroupinstall-y"ServerPlatformDevelopment"准备三台主机:httpa:192.168.1.217搭建web服务器安装phphttpdb:192.16..
分类:
Web开发 时间:
2015-07-14 06:26:34
收藏:
0 评论:
0 赞:
0 阅读:
513
分类:
其他 时间:
2015-07-14 06:26:04
收藏:
0 评论:
0 赞:
0 阅读:
230
报错:Can’tlocateExtUtils/MakeMaker.pmin@INC解决方法:yuminstallperl-ExtUtils-CBuilderperl-ExtUtils-MakeMaker
分类:
其他 时间:
2015-07-14 06:25:34
收藏:
0 评论:
0 赞:
0 阅读:
295