码迷,mamicode.com
首页 >  
搜索关键字:find mtime    ( 24581个结果
导航下拉
;(function ($) { $.fn.extend({ 'nav' : function (color) { $(this).find('.nav').css({ 'list-style' : 'none', 'margin' : 0, 'padding' : 0, ...
分类:其他好文   时间:2014-07-07 12:26:05    阅读次数:284
[LeetCode] Interleaving String [30]
题目Givens1,s2,s3, find whethers3is formed by the interleaving ofs1ands2.For example,Given:s1="aabcc",s2="dbbca",Whens3="aadbbcbcac", return true.Whens3...
分类:其他好文   时间:2014-07-07 12:04:54    阅读次数:142
php生成图片的几个问题
之前遇到的第一个问题是,使用php生成文字验证码时,总提示:Warning: imagettftext(): Could not find/open font in /var/www/html/touming.php on line 11或者The image "http://localhost/i...
分类:Web程序   时间:2014-07-07 10:49:21    阅读次数:206
cakephp 中的in的用法
$this->Mymodel->find('all', array('conditions' => array('Mymodel.name' => array($authors ,$articles)),'order'=>'Mymodel.id DESC'));
分类:Web程序   时间:2014-07-03 21:22:56    阅读次数:235
jquery获取select选择的文本与值
获取select :获取select 选中的 text : $("#ddlregtype").find("option:selected").text();获取select选中的 value: $("#ddlregtype ").val();获取select选中的索引: $("#d...
分类:Web程序   时间:2014-07-03 21:04:38    阅读次数:280
UVA 532 Dungeon Master
题目如下: Dungeon Master  You are trapped in a 3D dungeon and need to find the quickest way out!The dungeon is composedof unit cubes which may or may not be filled with rock. It ...
分类:其他好文   时间:2014-07-02 16:53:39    阅读次数:199
LeetCode——Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. Fo...
分类:其他好文   时间:2014-07-02 16:35:32    阅读次数:213
win 自动重启process
@ECHOOFF:checkconverter.exetasklist>list.txt//将所有进程信息列入list.txt文件里面(这里默认当前目录)find/i"converter.exe"list.txt//从list.txt文件里查找java.exe这个进程if"%errorlevel%"=="1"(gotostart)else(gotoe)//如果进程不存在,执行start处的代码;反之执..
分类:Windows程序   时间:2014-07-02 15:43:03    阅读次数:287
计算几何-hdoj-1147-Pick-up sticks
Pick-up sticks Problem Description Stan has n sticks of various length. He throws them one at a time on the floor in a random way. After finishing throwing, Stan tries to find the top sticks,...
分类:其他好文   时间:2014-07-02 15:29:53    阅读次数:295
字符串-01. 在字符串中查找指定字符(15)
1 #include 2 #include 3 using namespace std; 4 int main(){ 5 string s; 6 char c; 7 getline(cin,s); 8 cin>>c; 9 if(s.find(c)!=stri...
分类:其他好文   时间:2014-07-02 15:02:48    阅读次数:257
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!