1: wget
http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gztar -zxvf
libiconv-1.13.1.tar.gzcd libiconv-1.13.1./configure --prefix=/usr/local/li...
分类:
Web程序 时间:
2014-06-16 09:44:08
阅读次数:
223
输入一个字符串和一个非负整数N,要求将字符串循环左移N次。
输入格式:
输入在第1行中给出一个不超过100个字符长度的、以回车结束的非空字符串;第2行给出非负整数N。
输出格式:
在一行中输出循环左移N次后的字符串。
输入样例:
Hello World!
2
输出样例:
llo World!He
import java.math.BigInteger;
...
分类:
其他好文 时间:
2014-06-15 15:39:49
阅读次数:
188
package com.sot.he.upload;import java.awt.Graphics;import java.awt.Image;import java.io.FileInputStream;import java.io.FileNotFoundException;import ja...
分类:
其他好文 时间:
2014-06-15 06:44:15
阅读次数:
315
题目描述Bruce Force's keyboard is broken, only a few keys are still working. Bruce has figured out he can still type texts by switching the keyboard layou...
分类:
其他好文 时间:
2014-06-14 21:00:09
阅读次数:
444
一、安装apache1.安装pcre./configure
--prefix=$安装路径/pcre3.安装apr & apr-util将apr-1.4.6 与apr-util-1.4.1 更名为apr
和apr-util, 放在./httpd-2.4.2/srclib/下2.安装apache(htt...
分类:
其他好文 时间:
2014-06-12 17:58:16
阅读次数:
298
1.在ApplicationContext-mvc.xml,即是里面有装备以下内容的xml:Java代码
保藏代码class="org.springframework.web.servlet.view.InternalResourceViewResolver">
"prefix" value...
分类:
编程语言 时间:
2014-06-12 15:43:15
阅读次数:
295
在使用XCODE5.0及以后的版本开发基于同工作空间不同工程的分层架构时,静态链接库文件为.a文件,在编译时除了要找到这个.a文件,还要添加它们的.h头文件。打开工程,选择TARGETS-Build
Phases,在Xcode5.0版本以前,右下角有一个+按钮,可以直接选择Add Copy He.....
分类:
移动开发 时间:
2014-06-10 21:44:52
阅读次数:
425
原题地址:https://oj.leetcode.com/problems/longest-common-prefix/题意:Write
a function to find the longest common prefix string amongst an array of
strings.解...
分类:
编程语言 时间:
2014-06-10 16:31:52
阅读次数:
261