《 找水王》问题描述:已知某个论坛的帖子汇总列表,要找出其中的水王(即发的帖子数超出了总帖子数的一半),求解水王的IP地址;设计思想:故名思意,一个帖子对应着一个IP地址,只要设计相关的思路遍历一遍帖子汇总列表,即可找出水王的IP地址;具体做...
分类:
其他好文 时间:
2015-05-16 11:45:33
阅读次数:
76
1. 关于Vim 1.1 Vim的几种模式 2. 启动Vim 3. 文档操作 4. 光标的移动 4.1 基本移动 4.2 翻屏 4.3 标记 5. 插入文本 5.1 基本插入 5.2 改写插入 6. 剪切复制和寄存器 6.1 剪切和复制、粘贴 6.2 文本对象 6.3 寄存器 7. 查找与替换 7....
分类:
系统相关 时间:
2015-05-16 11:46:55
阅读次数:
126
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...
分类:
编程语言 时间:
2015-05-16 11:47:02
阅读次数:
107
TreeTime Limit: 6000/2000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1861Accepted Submission(s): 545Problem Descrip...
分类:
其他好文 时间:
2015-05-16 11:44:34
阅读次数:
196
1.生成Cookiepublic static void SetDataByCookie(string mainKey, string subKey, string value, string domain, int expireHours){ var cookie = Request.Coo...
分类:
Web程序 时间:
2015-05-16 11:43:51
阅读次数:
132
1 串口,调试. debugging mode 启动.2 BugCheck C000021A(e1c52ce0,c0000034,0,0)用windbg的帮助文档可以搜索C000021A。STOP:C000021A{FatalSystemError}TheWindowsLogonProcesssy....
分类:
其他好文 时间:
2015-05-16 11:44:02
阅读次数:
192
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.N...
分类:
编程语言 时间:
2015-05-16 11:45:30
阅读次数:
149
换种思考角度在符合数字排列组合的情况下,观察数字是否为n的倍数。于是从小到大查找,通过bfs状态转换。循环节为n。表达困难,还请看代码#include #include #include #include #include #include #include #include #include #i...
分类:
其他好文 时间:
2015-05-16 11:45:02
阅读次数:
120
https://github.com/eltld/loading-show-hide
分类:
其他好文 时间:
2015-05-16 11:43:58
阅读次数:
125
http://www.blogjava.net/jerry-zhaoj/archive/2009/07/16/286993.html 转JAVA 中URL链接中文参数乱码的处理方法JAVA 中URL链接中文参数乱码的处理方法JAVA 中URL链接中文参数乱码的处理方法在url中问参数乱码,我们已经在...
分类:
编程语言 时间:
2015-05-16 11:44:26
阅读次数:
215
实现远程访问HBase,可以通过Eclipse开发工具方便进行代码调试。为了方便jar包各种版本的管理,才用maven进行代码构建首先,下载并安装maven以及M2Eclipse插件其次,配置maven的pom.xml文件,加入如下依赖 org.apache.hbase hbase-cl...
分类:
系统相关 时间:
2015-05-16 11:44:37
阅读次数:
257
/// /// 处理json字符串中的特殊字符 /// /// /// public static String StringDanYinToJSON(String ors) { ors = ors == null ? "" : ors; StringBuilder buffer = ne...
分类:
Web程序 时间:
2015-05-16 11:43:47
阅读次数:
243
https://github.com/eltld/ProgressCircular
分类:
其他好文 时间:
2015-05-16 11:43:15
阅读次数:
79
一. 题目描述 使用归并排序对n个元素进行排序。 二. 题目分析 归并排序算法是用分治策略实现对n个元素进行排序的算法。其基本思想是: 将待排序元素分成大小大致相同的2个子集合,分别对2个子集合进行排序,最终将排好序的子集合合并成为所要求的排好序的集合。 三. 算法实现 #include #defi...
分类:
编程语言 时间:
2015-05-16 11:42:27
阅读次数:
225
简单登录验证创建Login类 1 display(); 5 } 6 function do_login(){ 7 //获取用户名和密码等。和数据库中比对,有该用户允许登录否则输出错误页面 8 $username=$_PO...
分类:
Web程序 时间:
2015-05-16 11:44:16
阅读次数:
124
http://www.lydsy.com/JudgeOnline/problem.php?id=2333#include using namespace std;const int N=300015, Lim=N;struct node *null;struct node { node *c[2],...
分类:
其他好文 时间:
2015-05-16 11:43:06
阅读次数:
150
转载:http://www.cnblogs.com/xwdreamer/archive/2012/04/06/2434483.html1.解析Java有四种访问权限, 其中三种有访问权限修饰符,分别为private,public和protected,还有一种不带任何修饰符。private: Java...
分类:
编程语言 时间:
2015-05-16 11:43:15
阅读次数:
154