Query OK, 24918 rows affected (0.90 sec)Records:
24918 Duplicates: 0 Warnings: 0Query OK, 24923 rows affected (2.26 sec)Records:
24923 Duplicates: 0 W...
分类:
数据库 时间:
2014-05-18 19:21:18
阅读次数:
272
checking for CRYPTO_free in -lcrypto...
noconfigure: error: libcrypto not found!http://www.openssl.org/source/
openssl-0.9.8y.tar.gz cd openssl-0.9.8y...
分类:
Web程序 时间:
2014-05-18 19:11:48
阅读次数:
376
Sorry, command-not-found has crashed!新安装了一台ubuntu
server安装时用中文安装的,之后命令行下各种乱码,最后也不知道是修改哪里造成的每次执行一次错误的命令就会报错:(报错信息如下)Sorry,
command-not-found has crashe...
分类:
其他好文 时间:
2014-05-18 19:03:55
阅读次数:
238
题目链接:
点击打开链接
题目:
Whuacmers use coins.They have coins of value A1,A2,A3...An Silverland dollar. One day Hibix opened purse and found there were some coins. He decided to buy a very nice watch...
分类:
其他好文 时间:
2014-05-18 15:56:34
阅读次数:
264
Remove Duplicates from Sorted List IGiven a
sorted linked list, delete all duplicates such that each element appear only
once.For example,Given 1->1->...
分类:
其他好文 时间:
2014-05-18 01:41:31
阅读次数:
361
今天给nginx 升级的时候碰到一个问题通过执行 add-apt-repository
命令来添加nginx 的ppa的时候发现 命令找不到root@ubuntu:~# sudo
add-apt-repositoryppa:nginx/stablesudo: add-apt-repository: ...
分类:
其他好文 时间:
2014-05-17 22:10:10
阅读次数:
336
在ASP.NET中,开发人员经常使用Response.Redirect()方法,用编程的手法,将对老的URL的请求转到新的URL上。但许多开发人员没有意识到的是,Response.Redirect()方法发的是个
HTTP 302 Found (临时转向) 回复,会在用户尝试访问老的URL时,导.....
分类:
其他好文 时间:
2014-05-17 15:02:03
阅读次数:
273
??
NET IIS7.5 创建站点时,如果发现以下错误,并且 默认站点访问没有问题的话,
可以尝试,进入 处理程序映射 右键恢复为父级,有可能会有意想不到的 惊喜。
我的问题就是这样解决的。
出现这种问题的关键:是你的站点没有可以处理的扩展。
如:*.asp, *.html, *.aspx等等
错误摘要
HTTP 错误 404.4 - Not Found
...
分类:
Windows程序 时间:
2014-05-15 19:28:06
阅读次数:
1297
Problem Description
Consider the following exercise, found in a generic linear algebra textbook.
Let A be an n × n matrix. Prove that the following statements are equivalent:
1. A is invertible...
分类:
其他好文 时间:
2014-05-15 01:30:21
阅读次数:
309
题意:从一个已排序的数组中移除掉重复的元素,每个元素最多可重复两次
思路: 思路和Remove Duplicates from Sorted Array一样,不过要设置一个计数变量,表示当前值出现的次数
出现次数少于2可以加入到新数组,多于2则不可以。每次遇到一个新变量要把计数变量重新设置为1,加入新数组要加1
复杂度:时间O(n), 空间O(1)...
分类:
其他好文 时间:
2014-05-14 21:03:00
阅读次数:
262