$(function() { //FireFox2及以上 if
($.browser.MozillaSideBar && $.browser.version >= "1.8") { } //Safari
...
分类:
Web程序 时间:
2014-05-16 05:21:49
阅读次数:
239
问题起因:某一天下午,团队成员在向svn服务端提交新内容,突然整栋楼断电了,自然,提交的过程被中断了。当时,还没有什么想法。
等有电后,另外一同事在update项目时,发现无法正常使用svn,一直报异常信息:Invalid filesystem revision numbersvn:
没...
分类:
其他好文 时间:
2014-05-15 15:49:33
阅读次数:
329
#include
#include
using namespace std;
//下面一个移位是一样的,>>相当于除去2,主要是要用right-left,否则对于大数据来说会产生溢出问题。切记
int binarySearch(int arr[],int len,int number)
{
int left=0;
int right=len-1;
in...
分类:
其他好文 时间:
2014-05-15 07:14:38
阅读次数:
272
CentOS 6.3(Linux version 2.6.32-279.el6.x86_64)
gcc (GCC) 4.4.6 20120305 (Red Hat 4.4.6-4)
本次配置
Nginx 1.5.8
Apache 2.4.7
php 5.3.26
FASTCGI...
分类:
编程语言 时间:
2014-05-15 05:52:51
阅读次数:
421
Write the code that will take a string and make this conversion given a number of rows:
P A H N
A P L S I I G
Y I R
convert("PAYPALISHIRING", 3) should return "PAHNAPLSIIGYIR"....
分类:
其他好文 时间:
2014-05-15 04:49:04
阅读次数:
311
LeetCode-001 Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2...
分类:
其他好文 时间:
2014-05-15 04:34:50
阅读次数:
293
【题目】
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)
P A H N
A P L S I I G
Y I R
And then read line by line: "PAHNAPLSI...
分类:
其他好文 时间:
2014-05-15 04:30:57
阅读次数:
313
题目
Given a non-negative number represented as an array of digits, plus one to the number.
The digits are stored such that the most significant digit is at the head of the list.
解答
本题考察进位问题,注...
分类:
其他好文 时间:
2014-05-15 04:16:56
阅读次数:
245
1.我使用的Hadoop2.0-cdh4.3.0,对应hive配套版本hive-0.10.0-cdh4.3.0。
2.修改hive/conf下hive-site.xml文件,无则创建hive-site.xml,在底部添加如下内容:
[html] view
plaincopy
xml version="1.0" encoding="UTF-8"...
分类:
其他好文 时间:
2014-05-15 04:05:27
阅读次数:
341
SQL:CREATE PROCEDURE PagingViewTest(
@currentPageIndex INT, --页序号 @pageSize INT, --页大小 @pageCount INT OUTPUT
--返回值,总记录数)ASBEGIN--取总记录数SELECT @p...
分类:
数据库 时间:
2014-05-14 13:15:07
阅读次数:
473