码迷,mamicode.com
首页 >  
搜索关键字:check    ( 9197个结果
Check iO:初学Python
The end of otherFor language training our Robots want to learn about suffixes.In this task, you are given a set of words in lower case. Check whether ...
分类:编程语言   时间:2014-07-09 21:54:26    阅读次数:200
SVN failed to start 解决方案
问题:Windows 8.1系统上安装VirtualSVN Server发生Service 'VisualSVN Server' failed to start. Please check VisualSVN Server log in Event Viewer for more details. 错误 点击retry之后,也无法使用。   网上方案:     在弹出错误之后,运行:ser...
分类:其他好文   时间:2014-07-08 19:23:02    阅读次数:220
判断一个整数是否为回文数 Check if a number is palindrome
一种方法是先翻转当前数,然后把它和原数比较(略)另一种是递归方法,借用一个复制数,对原数递归,使之翻转,然后配合复制数比较package recursion; public class Check_if_a_number_is_palindrome { public static void main(String[] args) { int num = 121321; System....
分类:其他好文   时间:2014-07-08 17:13:55    阅读次数:188
JavaScript-4.7-friendly_table---ShinePans
4.6 人性化表单 function $(str) {return(document.getElementById(str));} function check_submit(){ if($("txt_user_name").value==""){alert("请填写用户名");return(false);} if($("txt_user_pass").v...
分类:编程语言   时间:2014-07-08 15:08:33    阅读次数:175
jQuery验证控件validate使用
一导入js库二、默认校验规则(1)required:true 必输字段(2)remote:"check.php"使用ajax方法调用check.php验证输入值(3)email:true 必须输入正确格式的电子邮件(4)url:true 必须输入正确格式的网址(5)date:true 必须输入正确格...
分类:Web程序   时间:2014-07-06 14:04:28    阅读次数:291
VBA自定义函数参数类型不符的错误
作者:iamlaosong 1、问题提出 编程中发现一个问题,系统总是提示编译错误,ByRef 参数类型不符, 可实际上参数定义没问题,原因在哪儿呢? 2、问题环境 假定函数定义如下: Function get_kind(addr As String) As Integer ...... End Function 调用过程: Sub check_addres...
分类:其他好文   时间:2014-07-06 10:45:44    阅读次数:399
"crsctl check crs" command hangs at EVMD check
?? Pre-11gR2: "crsctl check crs" command hangs at EVMD check (文档 ID 1578875.1) APPLIES TO: Oracle Database - Enterprise Edition - Version 10.2.0.3 to 11.1.0.7 [Release 10.2 to 11.1] Informatio...
分类:其他好文   时间:2014-07-04 08:16:00    阅读次数:335
[leetcode] Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
分类:其他好文   时间:2014-07-03 19:20:42    阅读次数:189
SPOJ 220 Relevant Phrases of Annihilation (后缀数组)
题目大意: 求在m个串中同时出现两次以上且不覆盖的子串的长度。 思路分析: 二分答案,然后check是否满足,判断不覆盖的方法就是用up down 来处理边界。 #include #include #include #include #include #include #define maxn 110005 using namespace std; char ...
分类:其他好文   时间:2014-07-03 16:55:30    阅读次数:350
POJ 3294 Life Forms (后缀数组)
题目大意: 求出在m个串中出现过大于m/2次的子串。 思路分析: 如果你只是直接跑一次后缀数组,然后二分答案扫描的话。 那么就试一下下面这个数据。 2 abcdabcdefgh efgh 这个数据应该输出 efgh 问题就在于对于每一个串,都只能参与一次计数,所以在check的时候加一个标记数组是正解。 #include #include #inc...
分类:其他好文   时间:2014-07-03 15:35:12    阅读次数:171
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!