一、利用jquery.form插件提交表单方法使用jquery.validate插件现象:当提交表单时,即使前台未验证通过,也照常提交表单。解决办法:[php]view plaincopy$('#myForm').submit(function(){if(!$(this).valid())retur...
分类:
Web程序 时间:
2014-08-18 18:19:53
阅读次数:
292
Given a binary tree, determine if it is a valid binary search tree (BST).Assume a BST is defined as follows:The left subtree of a node contains only n...
分类:
其他好文 时间:
2014-08-18 13:02:02
阅读次数:
209
Given a string containing only digits, restore it by returning all possible valid IP address combinations....
分类:
其他好文 时间:
2014-08-17 22:48:32
阅读次数:
217
Given a binary tree, determine if it is a valid binary search tree (BST).Assume a BST is defined as follows:The left subtree of a node contains only n...
分类:
其他好文 时间:
2014-08-17 21:11:02
阅读次数:
213
这道题目原来我理解错了,以为要使得行列出现的数字完全不同
调试花了我一早上的时间,擦擦擦
其实只要小方格内的不同就够了
这里注意一个小技巧:
vis1[i][ans[i][j]]=1; vis2[ans[i][j]][j]=1;
使得行列取不同的数字用于判重
#include
#include
int map[10][10],ar[80][2],used1[10][10...
分类:
其他好文 时间:
2014-08-16 15:10:50
阅读次数:
216
Simply DFS + Backtrace, as N-Queenclass Solution {public: vector> rows; vector> cols; vector>> subboxHm; bool isValid(char c, int i, int j...
分类:
其他好文 时间:
2014-08-16 07:29:10
阅读次数:
166
Valid NumberValidate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the ...
分类:
其他好文 时间:
2014-08-16 01:01:49
阅读次数:
195
当页面上有多个按钮,为每个都写个响应函数相当麻烦:可以这样来做:方法1: 1 public class Sudoku extends Activity implements OnClickListener{ 2 /** Called when the activity is first cr...
分类:
其他好文 时间:
2014-08-15 22:30:29
阅读次数:
342
Here another memory for speed implementation:class Solution {public: bool isValidSudoku(vector > &board) { size_t row_cnt = board.size(); ...
分类:
其他好文 时间:
2014-08-15 14:18:48
阅读次数:
194
给定n, 返回所有匹配的n对括号的可能形式. 如给定n= 3, 一个解集是:"((()))", "(()())", "(())()", "()(())", "()()()"本题解法的思路是使用栈seq保存经历的字符串状态;使用栈valid保存对应的字符串中有效的括号对个数;当seq不为空时(即回溯未...
分类:
其他好文 时间:
2014-08-14 19:42:29
阅读次数:
169