在做网站的时候有一块需要用到jquery.validate插件 ajax方式的方式来验证原始密码是否正确,研究了研究加上博客园朋友的帮助,终于实现了。贴出代码 $(function () { $("#form1").validate({ rules: { pwd: { required: true,...
分类:
Web程序 时间:
2014-08-16 10:58:30
阅读次数:
276
$data=I(‘post.‘,‘‘,‘trim‘); $rules = array( ???? array(‘name‘,‘‘,‘数据名称已存在‘,0,‘unique‘,1), ???? //array(验证字段1,验证规则,错误提示,[验证条件,附加规则,验证时间]), ???? array(‘ver...
分类:
Web程序 时间:
2014-08-16 01:12:29
阅读次数:
480
Let's play a game
Time Limit: 2 Seconds Memory Limit: 65536 KB
Elves from the Lothvain forest have created a very interesting game. The rules are very simple:
There are two players.
...
分类:
其他好文 时间:
2014-08-15 17:56:19
阅读次数:
251
DescriptionChristine and Matt are playing an exciting game they just invented: the Number Game. The rules of this game are as follows.The players take...
分类:
其他好文 时间:
2014-08-14 20:00:10
阅读次数:
244
1.当然首先你得将手机里的usb debug选项选上,否则lsusb是不会有你的设备的 2. lsusb 查看usb设备id 3. sudo vim /etc/udev/rules.d/51-android.rules SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4....
分类:
数据库 时间:
2014-08-14 19:52:19
阅读次数:
229
许多应用程序都需要处理有序的元素,但不一定要求全部有序。一个合适的数据结构应该支持两种操作:删除最大元素和插入元素。 1 #include 2 #include 3 using namespace std; 4 5 6 struct node 7 { 8 int priority; ...
分类:
其他好文 时间:
2014-08-14 01:04:47
阅读次数:
268
1 /* 2 bfs搜索!要注意的是点与点的权值是不一样的哦! 3 空地到空地的步数是1, 空地到墙的步数是2(轰一炮+移过去) 4 所以用到优先队列进行对当前节点步数的更新! 5 */ 6 #include 7 #include 8 #include 9 #inc...
分类:
其他好文 时间:
2014-08-13 22:02:27
阅读次数:
218
IPTABLES 规则(Rules)Rules包括一个条件和一个目标(target)如果满足条件,就执行目标(target)中的规则或者特定值。如果不满足条件,就判断下一条Rules。目标值(Target Values)ACCEPT– 允许防火墙接收数据包DROP– 防火墙丢弃包QUEUE– 防火墙...
分类:
其他好文 时间:
2014-08-13 17:47:16
阅读次数:
213
关于priority_queue1,关于STL中的priority_queue:确定用top()查看顶部元素时,该元素是具有最高优先级的一个元素. 调用pop()删除之后,将促使下一个元素进入该位置.2,如同stack和queue,priority_queue是一个基于基本序列容器进行构建的适配器,...
分类:
其他好文 时间:
2014-08-13 14:25:36
阅读次数:
363
前面两篇介绍了gcc4.8的vector和list的源码实现,这是stl最常用了两种序列式容器。除了容器之外,stl还提供了一种借助容器实现特殊操作的组件,谓之适配器,比如stack,queue,priority queue等,本文就介绍gcc4.8的priority queue的源码实现。顾名思义...
分类:
其他好文 时间:
2014-08-13 01:06:44
阅读次数:
288