码迷,mamicode.com
首页 >  
搜索关键字:step return    ( 64763个结果
LeetCode: Triangle 题解
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他好文   时间:2014-05-08 21:08:25    阅读次数:407
jQuery同时处理一个控件的click和dblclick事件
1 jQuery.fn.single_double_click = function(single_click_callback, double_click_callback, timeout) { 2 return this.each(function(){ 3 var clicks...
分类:数据库   时间:2014-05-08 20:54:46    阅读次数:373
IOS 类别与扩展的区别 (category & extensions)
类别.h@interface NSString(XXXXXX)-(NSInteger)getLen;@end.m@implementation NSString(XXXXXX) -(NSInteger)getLen{ return 0;}@end//////////////////////////....
分类:移动开发   时间:2014-05-08 20:20:28    阅读次数:365
hdu 1159
题意:求最长子序列#include#includeusing namespace std;int max(int x,int y){ if(x>y) return x; return y;}int map[1001][1001];char s1[1001],s2[1001];int main(){ ...
分类:其他好文   时间:2014-05-07 20:07:29    阅读次数:202
求N个数的最大公约数
#include #include #define N 100int gcd(int x,int y){ int t; if(x<y) { t=x; x=y; y=t; } return (y==0)?x:gcd(y,x%y);...
分类:其他好文   时间:2014-05-07 19:29:36    阅读次数:309
hdu 1176
数塔问题#include#includeusing namespace std;int a[100009][12];int maxi(int a,int b,int c){ int max1; max1=a>b?a:b; max1=max1>c?max1:c; return ...
分类:其他好文   时间:2014-05-07 19:25:00    阅读次数:302
operator++() 和operator++(int)
#include using namespace std;class A{public: int a;public: A& operator++(){ cout<<"A& operator++()"<<endl; a=a+1; return *this; } A operator++(int){ c...
分类:其他好文   时间:2014-05-07 18:37:55    阅读次数:208
shell脚本学习
1. 关于自定义函数比如定义了一个函数名为hello的函数:1 function hello{2 3 echo "Hello World!"4 5 return 16 7 }1 #调用函数2 hello3 4 #保存函数返回值5 a=$?若将函数写在单独的文件中,可以用下面的方式来调用,假设...
分类:其他好文   时间:2014-05-07 18:34:04    阅读次数:328
ios7 隐藏显示状态栏
1. 试了Hide during application launch的勾选选项,不可以2. 试了Controller中用函数,还是不可以- (BOOL)prefersStatusBarHidden{ return YES;//隐藏为YES,显示为NO}后边找到这个方法,终于可以了,Mark一...
分类:移动开发   时间:2014-05-07 10:12:20    阅读次数:312
JQuery求和函数
function convert2Int(num) {num = parseInt(num); return isNaN(num) ? 0 : num; } $(function () { var rows = $("...
分类:Web程序   时间:2014-05-06 09:38:17    阅读次数:1838
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!