// Question: There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexi...
分类:
其他好文 时间:
2014-06-21 00:22:23
阅读次数:
255
When you find yourself calling the same function and passing mostly the same parameters, then the function is probably a good candidate for currying. ...
分类:
编程语言 时间:
2014-06-21 00:20:34
阅读次数:
297
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The same repeate...
分类:
其他好文 时间:
2014-06-20 23:37:29
阅读次数:
195
Given an array of integers, every element appears twice except for one. Find that single one.Note:Your algorithm should have a linear runtime complexi...
分类:
其他好文 时间:
2014-06-20 23:34:47
阅读次数:
308
查询表字段 pingid = (1,2,3,)用正则select * from linkinfo where pingid regexp '[[::]]'用FIND_IN_SET()SELECT * FROM linkinfo WHERE FIND_IN_SET( '1', pingid )原来以为...
分类:
其他好文 时间:
2014-06-20 22:34:52
阅读次数:
254
Linux系统默认已经安装了Samba,但是没有安装Samba服务:1,先查看安装情况:rpm -qa|grep samba根据系统的安装情况选择下载或者通过光驱安装所缺的rpm包。我的安装情况是:使用命令:mount /dev/cdrom1 /mnt/cdrom1通过mount把cdrom1挂载到...
分类:
系统相关 时间:
2014-06-20 21:45:58
阅读次数:
294
初学YII, 整理了一些YII数据库的相关操作, 共同学习,共同进步。一、查询数据集合 1 //1.该方法是根据一个条件查询一个集合 2 $admin=Admin::model()->findAll($condition,$params); 3 $admin=Admin::model()->find...
分类:
数据库 时间:
2014-06-20 20:24:28
阅读次数:
243
private void FocusFirstTabIndex(Control container){ // init search result varialble Control searchResult = null; // find the control with the...
分类:
其他好文 时间:
2014-06-20 17:43:54
阅读次数:
178
1.jquery 遍历节点时如果,这些节点是随时更新的就要这样通过选择器获取节点:self.modelSlide.find('li').eq(0).appendTo(self.modelSlide);2. 当有动画播放时,如果不想点击按钮频繁点击时,要设置开关self.isclick = false...
分类:
Web程序 时间:
2014-06-20 16:50:43
阅读次数:
211
需要安装的有:devel,client,server1、首先要看看有没有已经安装好的MySQL,以免产生冲突# rpm -qa | grep MySQL2、卸载冲突的版本# rpm -e MySQL-version //要先后卸载客服端和服务器端3、安装MySQL客服端和服务器端rpm安装,根据要安...
分类:
数据库 时间:
2014-06-20 14:44:30
阅读次数:
277