码迷,mamicode.com
首页 > 2015年03月14日 > 全部分享
maven手动安装jar包
推荐几个好的 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
Binary Tree Level Order Traversal
我竟然先做的前一题,无语了/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : ...
分类:其他好文   时间:2015-03-14 15:14:44    阅读次数:78
js中关于原型的几个方法
一、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
sort()排序
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
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
50个人围成一圈数到3和3的倍数时出圈,问剩下的人是谁?在原来的位置是多少?
参考答案: 在原来的位置是: 11
分类:其他好文   时间:2015-03-14 15:14:09    阅读次数:124
RefBase, sp和wp (3)
RefBase提供了一个函数: extendObjectLifetime(int32_t mode); 用于在构造函数中设置mFlags的值. 以及定义了一个枚举: enum { OBJECT_LIFETIME_WEAK = 0x0001; // 二进制为B01 OBJECT_LIFETIME_F....
分类:其他好文   时间:2015-03-14 15:12:23    阅读次数:142
Divide Two Integers
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
POSIX线程库复习
创建一个新的线程 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中的鱼眼工具是一个非常好用并且强大的工具,用户可以通过它来制作很多漂亮新奇的图案,今天我就来和大家一起分享一下如何活用CorelDRAW鱼眼工具。
分类:其他好文   时间:2015-03-14 15:14:09    阅读次数:141
nyoj 网络的可靠性(。。。)
。。。 一开始吓着了 结果不就是找度为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
UITableViewCell-02
// 单行插入刷新,效率高 NSIndexPath *path = [NSIndexPath indexPathForRow:(self.tgs.count - 1) inSection:0]; [self.tableView insertRowsAtIndexPaths:@[path]...
分类:其他好文   时间:2015-03-14 15:14:27    阅读次数:113
JS中的call()和apply()方法(转)
1、方法定义call方法:语法:call([thisObj[,arg1[, arg2[, [,.argN]]]]])定义:调用一个对象的一个方法,以另一个对象替换当前对象。说明:call 方法可以用来代替另一个对象调用一个方法。call 方法可将一个函数的对象上下文从初始的上下文改变为由 thisO...
分类:移动开发   时间:2015-03-14 15:11:37    阅读次数:141
Hibernate(八)多对多映射
一、创建数据表--学生证表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
iOS 8 Xcode6 设置Launch Image 启动图片<转>
Step11.点击Image.xcassets 进入图片管理,然后右击,弹出"New Launch Image"2.如图,右侧的勾选可以让你选择是否要对ipad,横屏,竖屏,以及低版本的ios系统做支持.这边我选了ios8.0,ios7.0,ios6没有做支持.Step2将规定尺寸的图片从你的文件中...
分类:移动开发   时间:2015-03-14 15:11:54    阅读次数:128
1536条   上一页 1 ... 52 53 54 55 56 57 58 ... 91 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!