https://oj.leetcode.com/problems/triangle/http://blog.csdn.net/linhuanmars/article/details/23230657publicclassSolution{
publicintminimumTotal(List<List<Integer>>triangle)
{
//SolutionA:
//returnminimumTotal_MaintainSums(triangle);
//SolutionB:..
分类:
其他好文 时间:
2015-01-06 18:12:52
阅读次数:
152
四国分为北鹰,金城,封都,瑶国。每一个国家都有自己的传说和皇族成员难以作假的特征埃瑶国,位于四国的东边,三面环海,以为与海上各个国家接触较多,瑶国人的思想也毕竟特别,男女平等。哪怕是女子也有权利继承家业。一切以贤德为标准。相传瑶国的皇族是上古的谪仙,因为瑶..
分类:
其他好文 时间:
2015-01-06 18:13:48
阅读次数:
176
apache别名<VirtualHost*:80>ServerAdminwebmaster@dummy-host.example.comDocumentRoot/data/httpdServerNamenode144.xy.comServerAliasbeta.xy.comErrorLog/data/logs/httpd/node144.xy.com-error_logCustomLog/data/logs/httpd/node144.xy.com-access_logcommon alias..
分类:
Web程序 时间:
2015-01-06 18:12:58
阅读次数:
230
四国分为北鹰,金城,封都,瑶国。每一个国家都有自己的传说和皇族成员难以作假的特征埃瑶国,位于四国的东边,三面环海,以为与海上各个国家接触较多,瑶国人的思想也毕竟特别,男女平等。哪怕是女子也有权利继承家业。一切以贤德为标准。相传瑶国的皇族是上古的谪仙,因为瑶..
分类:
其他好文 时间:
2015-01-06 18:15:05
阅读次数:
187
#showmount-eclnt_create:RPC:Unknownhost检查/etc/hosts文件,将服务器IP解析至服务器主机名(另外需要注意是先重启rpcbind-再重启nfs服务)
分类:
其他好文 时间:
2015-01-06 18:13:48
阅读次数:
162
1、使用ssh远程连接服务器sshIP,如果不指定用户名,默认使用当前的用户名指定用户名登陆:ssh-lusernameIP
sshroot@IPsshredhat@localhostssh登陆成功后,会在用户的家目录下生成.ssh的文件夹,里面记录了用户的公钥指纹:[root@clz~]#sshredhat@localhost
Theauthenticityofh..
分类:
其他好文 时间:
2015-01-06 18:13:05
阅读次数:
188
DHCPspoofing攻击,又叫DHCP耗竭攻击,属于DDOS攻击的一种,能够使DHCP服务器没有可分配的DHCP的地址,造成DHCP地址池枯竭。从而使网络内正常主机无可分配的IP地址。同时,黑客利用冒充的DHCP服务器,为用户分配一个经过修改的DNS服务器地址,引导至预先配置好的假的金融网站或..
分类:
其他好文 时间:
2015-01-06 18:11:47
阅读次数:
175
1.任务一,抓取以下两个URL的内容,写入文件http://www.dmoz.org/Computers/Programming/Languages/Python/Books/http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/项目截图和上一个project不同的是,在spider中没有定义rules属性,而是定义了parse方法..
分类:
编程语言 时间:
2015-01-06 18:11:44
阅读次数:
314
https://oj.leetcode.com/problems/best-time-to-buy-and-sell-stock/http://blog.csdn.net/linhuanmars/article/details/23162793publicclassSolution{
publicintmaxProfit(int[]prices)
{
//SolutionA:
returnmaxProfit_DP(prices);
//SolutionB:
//returnmaxProfit_Binary(..
分类:
其他好文 时间:
2015-01-06 18:11:55
阅读次数:
176
错误信息:[plain]viewplaincopyprint?在CODE上查看代码片派生到我的代码片/root/rpmbuild/BUILD/php-5.4.36/ext/gd/gd_ctx.c:Infunction‘_php_p_w_picpath_stream_putc‘:/root/rpmbuild/BUILD/php-5.4.36/ext/gd/gd_ctx.c:51:error:‘structgdIOCtx‘hasnomembernamed‘data‘/roo..
分类:
Web程序 时间:
2015-01-06 18:13:16
阅读次数:
293
Oracle函数有字符函数、数学函数、日期函数和转换函数。我只了解了字符函数和数学函数。一、字符函数:lower(char)将字符串转化为小写的格式SQL>selectlower(ename),enamefromemp;LOWER(ENAME)ENAME----------------------smithSMITHallenALLENwardWARDupper(char)将字符..
分类:
数据库 时间:
2015-01-06 18:12:23
阅读次数:
221
https://oj.leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/http://blog.csdn.net/linhuanmars/article/details/23164149publicclassSolution{
publicintmaxProfit(int[]prices){
//Ifasmanytransactions
//Gready
intpro=0;
intbuy=0;
booleanhold=false;
int..
分类:
其他好文 时间:
2015-01-06 18:13:23
阅读次数:
132
线上服务器清理的差不多了,准备做一下服务器分层架构,就是将LNMP环境分离开,用到了LB集群,先来点理论吧。负载均衡LB集群主要关注的是并发处理能力,常用的有:LVS、nginx、haproxy。LVS是基于四层的负载均衡,不支持复杂特性的负载均衡,转发效率比7层略高nginx、haproxy都..
分类:
其他好文 时间:
2015-01-06 18:11:34
阅读次数:
336
还是上一篇博客的那个网站,我们增加了pipeline.pyitems.pyfromscrapy.itemimportItem,Field
classWebsite(Item):
name=Field()
description=Field()
url=Field()dmoz.pyfromscrapy.spiderimportSpider
fromscrapy.selectorimportSelector
fromdirbot.itemsimportWebsite
..
分类:
编程语言 时间:
2015-01-06 18:12:30
阅读次数:
391
例如:>>>a=range(10)
>>>a
[0,1,2,3,4,5,6,7,8,9]
>>>importrandom
>>>random.shuffle(a)
>>>a
[7,8,9,4,6,2,0,1,3,5]random.shuffle的函数原型为:random.shuffle(x[,random]),用于将一个列表中的元素打乱
分类:
编程语言 时间:
2015-01-06 18:12:52
阅读次数:
191
def,指definition。是函数的定义。定义的时候函数,函数并不执行,它们是为演算做准备val,指value。是演算的一个阶段性成果。等号右边的部分无论多么长都要被演算成一个值。可以说一个val就是小小的计算过程。val是函数是编程的最小程序单元。var,指variable。它们的值可以..
分类:
其他好文 时间:
2015-01-06 18:11:40
阅读次数:
164
<?php
/**
1.DestroyStack():栈的销毁
2.ClearStack():将栈置为空栈
3.StackEmpty():判断栈是否为空
4.StackLength():返回栈的长度
5.GetTop():取得栈顶的元素
6.Push():插入新的栈顶元素
7.Pop():删除栈顶元素
8.StackTraverse():遍历栈元素
*/
classLNode{
public$data;
p..
分类:
Web程序 时间:
2015-01-06 18:11:08
阅读次数:
198