推荐几个好的 Maven 常用仓库网址:http://mvnrepository.com/http://search.maven.org/http://repository.sonatype.org/content/groups/public/http://people.apache.org/rep...
分类:
编程语言 时间:
2015-03-14 15:14:55
阅读次数:
152
我竟然先做的前一题,无语了/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : ...
分类:
其他好文 时间:
2015-03-14 15:14:44
阅读次数:
78
一、isPrototypeOf()方法,判断一个对象是否是另一个对象的原型 function Student(name,age){ this.name=name; this.age=age; }var studen...
分类:
Web程序 时间:
2015-03-14 15:16:02
阅读次数:
127
商品的价格定位:(1)尽量覆盖多的人群:同类商品设置多个品种,尽量覆盖更多的人群,让各个阶层的人都能够买的起(2)功能底线:底层的比较功能,中层比较实用兼顾美观,高层只管美观(因为功能肯定是没有问题的)。(3)价格诱惑:为了发现潜在的购买用户,需要尽力将用户的购买区间往上提升,这样提高收入。如果界定...
分类:
其他好文 时间:
2015-03-14 15:13:51
阅读次数:
112
var ary = [8,9,10,3], compare = function(a,b){ return b.age-a.age; }, g = [ { name:"jim", age:29 }, { name:"tom", age:15 ...
分类:
编程语言 时间:
2015-03-14 15:15:19
阅读次数:
125
Valid Palindrome问题:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.思路: 简单的数学推导我的代码:publi....
分类:
其他好文 时间:
2015-03-14 15:14:52
阅读次数:
82
参考答案: 在原来的位置是: 11
分类:
其他好文 时间:
2015-03-14 15:14:09
阅读次数:
124
RefBase提供了一个函数: extendObjectLifetime(int32_t mode); 用于在构造函数中设置mFlags的值. 以及定义了一个枚举: enum { OBJECT_LIFETIME_WEAK = 0x0001; // 二进制为B01 OBJECT_LIFETIME_F....
分类:
其他好文 时间:
2015-03-14 15:12:23
阅读次数:
142
https://leetcode.com/problems/divide-two-integers/Divide two integers without using multiplication, division and mod operator.If it is overflow, retur...
分类:
其他好文 时间:
2015-03-14 15:13:58
阅读次数:
117
创建一个新的线程 int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg); thread:返回线程ID attr:设置线程的属性,att...
分类:
编程语言 时间:
2015-03-14 15:15:05
阅读次数:
199
CorelDRAW中的鱼眼工具是一个非常好用并且强大的工具,用户可以通过它来制作很多漂亮新奇的图案,今天我就来和大家一起分享一下如何活用CorelDRAW鱼眼工具。
分类:
其他好文 时间:
2015-03-14 15:14:09
阅读次数:
141
。。。 一开始吓着了 结果不就是找度为1的节点么。。 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include10 #include11 #include12 ...
分类:
其他好文 时间:
2015-03-14 15:14:37
阅读次数:
90
// 单行插入刷新,效率高 NSIndexPath *path = [NSIndexPath indexPathForRow:(self.tgs.count - 1) inSection:0]; [self.tableView insertRowsAtIndexPaths:@[path]...
分类:
其他好文 时间:
2015-03-14 15:14:27
阅读次数:
113
1、方法定义call方法:语法:call([thisObj[,arg1[, arg2[, [,.argN]]]]])定义:调用一个对象的一个方法,以另一个对象替换当前对象。说明:call 方法可以用来代替另一个对象调用一个方法。call 方法可将一个函数的对象上下文从初始的上下文改变为由 thisO...
分类:
移动开发 时间:
2015-03-14 15:11:37
阅读次数:
141
一、创建数据表--学生证表create table paper( pid number primary key, pdesc varchar2(100) , sid number references student(sid) not null ...
分类:
Web程序 时间:
2015-03-14 15:12:26
阅读次数:
202
#includevoid main(){int a[5]={3,5,7,8,9}; int (*p)[5]; p=&a; printf("%d",(*p)[2]);//7}#includevoid main(){int a[5]={1,5,3,8,9};int *p;p=&a[0];//或者p=a;...
分类:
编程语言 时间:
2015-03-14 15:13:33
阅读次数:
148
Step11.点击Image.xcassets 进入图片管理,然后右击,弹出"New Launch Image"2.如图,右侧的勾选可以让你选择是否要对ipad,横屏,竖屏,以及低版本的ios系统做支持.这边我选了ios8.0,ios7.0,ios6没有做支持.Step2将规定尺寸的图片从你的文件中...
分类:
移动开发 时间:
2015-03-14 15:11:54
阅读次数:
128