列表A 列表项目1 列表项目2 列表项目3 列表项目4 列表项目5 效果如下:
分类:
其他好文 时间:
2014-10-07 20:14:44
阅读次数:
656
序言: 嵌入式数据库Sqlite的基本sql使用汇总,使用测试起来,与关系型数据库mysql在语法上有很多的相似之处,先准备测试数据:CREATE TABLE COMPANY(ID INT NOT NULL, NAME VARCHAR(20),AGE INT,ADDRESS VARCHAR(20),SALARY DECIMAL(7,2));INSERT INTO "COMPANY" VALU...
分类:
移动开发 时间:
2014-10-06 11:30:10
阅读次数:
146
暂时对这个有了一些粗浅的理解,记下来一边后面学习时学习,改正。先举个例子:A类:.h文件:@interface A : NSObject- (void)Paly1:(void (^)(double salary))game1 Paly2:(void (^)(double salary))g...
分类:
其他好文 时间:
2014-09-25 20:06:37
阅读次数:
136
题目信息:
1008. Elevator (20)
时间限制
400 ms
内存限制
32000 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue
The highest building in our city has onl...
分类:
其他好文 时间:
2014-09-24 10:55:26
阅读次数:
205
斐波那契数列就是0,1,1,2,3,5……这样的一波数列,第三个数是前两个数的和。兔子问题,上楼梯的台阶方法的个数问题,都是斐波那契数列。斐波那契可以简单的用递归实现:1 def fib(n)2 # Calculate the nth Fibonacci Number3 return n...
分类:
其他好文 时间:
2014-09-22 22:45:23
阅读次数:
235
nth_element原型:
std::nth_element
default (1)
template
void nth_element (RandomAccessIterator first, RandomAccessIterator nth,
RandomAccessIterator last);...
分类:
其他好文 时间:
2014-09-22 14:30:13
阅读次数:
223
Remove Nth Node From End of ListGiven a linked list, remove the nth node from the end of list and return its head.For example, Given linked list: 1-.....
分类:
其他好文 时间:
2014-09-19 22:26:26
阅读次数:
216
注意看Ul:nth-child(){}本来是一一对应的,因为后来改版在div中加了标记后,竟然自动后移了、。。。不可思议,莫明奇妙
分类:
Web程序 时间:
2014-09-18 18:08:24
阅读次数:
164
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:
其他好文 时间:
2014-09-16 14:13:50
阅读次数:
133
CSS3 :nth-child()伪类选择器CSS3的强大,让人惊叹,人们在惊喜之余,又不得不为其艰难的道路感到可惜:好 的标准只有得到行业浏览器的良好支持才算得上“标准”。CSS3标 准已提出数年,但是目前能实现她的浏览器并不多,虽然部分浏览器能实现部分规范,但这又有什么用呢?面对更多的兼容性问题...
分类:
Web程序 时间:
2014-09-16 12:05:00
阅读次数:
1252