Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpo...
分类:
其他好文 时间:
2014-06-27 12:20:47
阅读次数:
245
System.IO.Path.Combine 简单来说,就是合并两个路径字符串。 比如如下调用,Path.Combine(@"C:\11","aa.txt") 返回的字符串路径如后: C:\11\aa.txt这个方法的声明如下: public static string Combine ( stri...
分类:
其他好文 时间:
2014-06-27 12:22:03
阅读次数:
165
1.格式化SD卡,用SDFormatter2.解压下载的操作系统3.复制操作系统到SD卡(要放在根目录,把最外面的文件夹路径去掉)4.把SD卡插入raspberry pi,接上电源5.在启动界面选择要安装的系统,然后点击install6.10分钟左右的安装等待时间startx:命令行进入界面改键盘h...
分类:
Web程序 时间:
2014-06-27 12:23:18
阅读次数:
221
Description农夫栋栋近年收入不景气,正在他发愁如何能多赚点钱时,他听到隔壁的小朋友在讨论兔子繁殖的问题。问题是这样的:第一个月初有一对刚出生的小兔子,经过两个月长大后,这对兔子从第三个月开始,每个月初生一对小兔子。新出生的小兔子生长两个月后又能每个月生出一对小兔子。问第n个月有多少只兔子?...
分类:
其他好文 时间:
2014-06-27 12:22:37
阅读次数:
254
--mysql常用的hint-------------------2014/06/26对于经常使用oracle的朋友可能知道,oracle的hint功能种类很多,对于优化sql语句提供了很多方法。同样,在mysql里,也有类似的hint功能。下面介绍一些常用的。强制索引FORCEINDEXSELEC...
分类:
数据库 时间:
2014-06-27 12:24:01
阅读次数:
227
第一章用户管理//2014年4月17号oracle有40多种权限。connect是权限问题,如省长,权限系统权限:描述的用户对数据库的访问的权限对象权限(数据对象(用户的表,视图,存储过程,触发器)权限):用户对其他用户的数据对象操作的权限。createression角色:事先定义一些角色,如con...
分类:
数据库 时间:
2014-06-27 12:24:46
阅读次数:
353
Given a linked list, remove the nth node from the end of list and return its head.
分类:
其他好文 时间:
2014-06-27 12:26:10
阅读次数:
322
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
分类:
其他好文 时间:
2014-06-27 12:25:27
阅读次数:
721
Description阿狸喜欢收藏各种稀奇古怪的东西,最近他淘到一台老式的打字机。打字机上只有28个按键,分别印有26个小写英文字母和'B'、'P'两个字母。经阿狸研究发现,这个打字机是这样工作的:l 输入小写字母,打字机的一个凹槽中会加入这个字母(这个字母加在凹槽的最后)。l 按一下印有'B'的按...
分类:
其他好文 时间:
2014-06-27 12:26:51
阅读次数:
215
ruby是一门非常纯粹的面向对象的语言:所有值都是对象,而且没有基本类型(primitive type)和对象类型的区别,这一点不同于其他语言。在Ruby中,所有对象都继承一个Object类,而且共享那些定义于此类中的方法。对象引用object references当我们在ruby中使用对象时,其实...
分类:
编程语言 时间:
2014-06-27 12:28:38
阅读次数:
184
Determine whether an integer is a palindrome. Do this without extra space.
分类:
其他好文 时间:
2014-06-27 12:28:06
阅读次数:
228
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of ...
分类:
其他好文 时间:
2014-06-27 12:27:28
阅读次数:
169
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.
分类:
其他好文 时间:
2014-06-27 12:29:18
阅读次数:
294
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
分类:
其他好文 时间:
2014-06-27 12:30:03
阅读次数:
200
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:
其他好文 时间:
2014-06-27 12:30:39
阅读次数:
204
HTTP状态码(HTTP Status Code)一些常见的状态码为:200- 服务器成功返回网页404- 请求的网页不存在503- 服务不可用所有状态解释:点击查看1xx(临时响应)表示临时响应并需要请求者继续执行操作的状态代码。代码 说明 100 (继续) 请求者应当继续提出请求。 服务...
分类:
编程语言 时间:
2014-06-27 12:31:20
阅读次数:
209
在容器里面如果用到opacity或者filter:opacity里面的内容也会被滤镜化如果不想里面的内容也被滤镜化我们可以用rgba来处理或者用透明的背景图片。兼容ie的rgba的写法background: rgba(0,0,0,0.75);-ms-filter:progid:DXImageTran...
分类:
其他好文 时间:
2014-06-27 12:32:41
阅读次数:
179