码迷,mamicode.com
首页 > 2015年05月16日 > 全部分享
《 找水王》
《 找水王》问题描述:已知某个论坛的帖子汇总列表,要找出其中的水王(即发的帖子数超出了总帖子数的一半),求解水王的IP地址;设计思想:故名思意,一个帖子对应着一个IP地址,只要设计相关的思路遍历一遍帖子汇总列表,即可找出水王的IP地址;具体做...
分类:其他好文   时间:2015-05-16 11:45:33    阅读次数:76
vim使用手册
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
Java for LeetCode 066 Plus One
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
hdoj 2682 Tree
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
ASP.NET操作Cookie
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
Java for LeetCode 064 Minimum Path Sum
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
hdu 4474数位搜索
换种思考角度在符合数字排列组合的情况下,观察数字是否为n的倍数。于是从小到大查找,通过bfs状态转换。循环节为n。表达困难,还请看代码#include #include #include #include #include #include #include #include #include #i...
分类:其他好文   时间:2015-05-16 11:45:02    阅读次数:120
loading-show-hide
https://github.com/eltld/loading-show-hide
分类:其他好文   时间:2015-05-16 11:43:58    阅读次数:125
java url中文参数乱码问题
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)
实现远程访问HBase,可以通过Eclipse开发工具方便进行代码调试。为了方便jar包各种版本的管理,才用maven进行代码构建首先,下载并安装maven以及M2Eclipse插件其次,配置maven的pom.xml文件,加入如下依赖 org.apache.hbase hbase-cl...
分类:系统相关   时间:2015-05-16 11:44:37    阅读次数:257
json字符串中包含"\"时,如何解析这个json字符串
/// /// 处理json字符串中的特殊字符 /// /// /// public static String StringDanYinToJSON(String ors) { ors = ors == null ? "" : ors; StringBuilder buffer = ne...
分类:Web程序   时间:2015-05-16 11:43:47    阅读次数:243
ProgressCircular
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
ThinkPhp学习13
简单登录验证创建Login类 1 display(); 5 } 6 function do_login(){ 7 //获取用户名和密码等。和数据库中比对,有该用户允许登录否则输出错误页面 8 $username=$_PO...
分类:Web程序   时间:2015-05-16 11:44:16    阅读次数:124
【BZOJ】2333: [SCOI2011]棘手的操作
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
java类的访问权限
转载:http://www.cnblogs.com/xwdreamer/archive/2012/04/06/2434483.html1.解析Java有四种访问权限, 其中三种有访问权限修饰符,分别为private,public和protected,还有一种不带任何修饰符。private: Java...
分类:编程语言   时间:2015-05-16 11:43:15    阅读次数:154
1475条   上一页 1 ... 61 62 63 64 65 66 67 ... 87 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!