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-05-09 10:27:29
阅读次数:
449
jQuery链式操作在jQuery中,执行完方法之后,都会返回当前的对象(return this
),对象当然可以继续调用方法啦,所以我们就可以进行链式操作了首先来看一个例子:$("li").css("color","gold").prevAll().css("color","gold");对一个j...
分类:
Web程序 时间:
2014-05-09 09:37:57
阅读次数:
353
一、实验代码#include void print(char s[]);int main(){
print((char *)"abcdef"); return 0;}void print(char s[]){
printf("%s\n",s);}二、实验结果输出:abcdef三、调...
分类:
其他好文 时间:
2014-05-09 09:37:30
阅读次数:
414
function DyLayer() { function el(id) { return
document.getElementById(id); }; //加載狀態 this.LoadStatus = ""; //css名 this.CssName
= "layer...
分类:
其他好文 时间:
2014-05-09 02:55:26
阅读次数:
290
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
测试程序:
#include
#include
struct dev
{
int a;
char b;
float c;
};
struct dev devs[]=
{
{
1,'a',7.0,
},
{
1,'a',7.0,
},
{
...
分类:
系统相关 时间:
2014-05-09 02:10:16
阅读次数:
494
比赛地址:点击打开链接
比赛做粗的4个题几乎都是水,感觉弱的水爆炸了。
这个题最初的思路是枚举找出四个点,做凸多边形的模板判断。C(30,4)。
结果答案不对。。后来发现模板上是要求点对的顺序是逆时针或顺时针输入。
于是用时钟排序的函数排序后判断:
bool cmp(point p1, point p2)
{
return atan2(p1.y, p1.x) < atan2(p2...
分类:
其他好文 时间:
2014-05-09 00:29:35
阅读次数:
381
http://oj.leetcode.com/problems/longest-valid-parentheses/ 1 class Solution: 2 #
@param s, a string 3 # @return an integer 4 def longestVa...
分类:
编程语言 时间:
2014-05-09 00:11:38
阅读次数:
410
问题一:value = [array objectAtIndex:n];
//得到一个数组中的对象[arry removeObjectAtIndex:n];
//卸载那个对象因为value得到了那个对象,但是由于另外一个拥有者release了该对象,所以其实value现在成了摇摆指针(无效数据)问题...
分类:
其他好文 时间:
2014-05-09 00:02:03
阅读次数:
366
isset:变量是否设置,或者是否未null$var="11";isset($var);返回1isset($empty);返回0数组$arr=array();isset($arr);返回1empty:""、0、"0"、NULL、FALSE、array()、var
$var;以及没有任何属性的对象都将...
分类:
其他好文 时间:
2014-05-08 23:43:03
阅读次数:
350
这道题的做法,一定得掌握啊!!! elegant & beautiful &
concise下面是AC代码: 1 /** 2 * Given a set of distinct integers, S, return all
possible subsets. 3 * 这道...
分类:
其他好文 时间:
2014-05-08 22:44:57
阅读次数:
424