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
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
类别.h@interface
NSString(XXXXXX)-(NSInteger)getLen;@end.m@implementation
NSString(XXXXXX) -(NSInteger)getLen{ return
0;}@end//////////////////////////....
分类:
移动开发 时间:
2014-05-08 20:20:28
阅读次数:
365
题意:求最长子序列#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
#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
数塔问题#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
#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
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
1. 试了Hide during application launch的勾选选项,不可以2.
试了Controller中用函数,还是不可以- (BOOL)prefersStatusBarHidden{ return
YES;//隐藏为YES,显示为NO}后边找到这个方法,终于可以了,Mark一...
分类:
移动开发 时间:
2014-05-07 10:12:20
阅读次数:
312
function convert2Int(num) {num = parseInt(num);
return isNaN(num) ? 0 : num; } $(function () { var rows = $("...
分类:
Web程序 时间:
2014-05-06 09:38:17
阅读次数:
1838