Leetcode更新到155题了,这个easy的题acceptance却不高,我好奇的点开了它。Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(...
分类:
编程语言 时间:
2014-11-14 19:24:03
阅读次数:
240
1、push方法(Array)将新元素追加到一个数组中,并返回新的数组长度。arrayObj.push([item1[item2[...[itemN]]]])2、pop方法(Array)()从数组中移除最后一个元素并返回该元素。arrayObj.pop()可以使用push和pop方法可模拟一个使用先进先出(LIFO)的原则来存储数据的堆栈。push方法..
分类:
编程语言 时间:
2014-11-14 18:06:16
阅读次数:
176
本教程将讲述:gitk的Git Gui的部分常用功能和使用方法,包括:建库、克隆(clone)、上传(push)、下载(pull - fetch)、合并(pull - merge)。——————————————————————————————————————————————1、下载并安装 下载地址:...
typedef __int64 ll;ll gao(ll l,ll r,ll n){//[l,r]内与n互素的数字个数 vector v; for(ll i=2;i*i1)v.push_back(n); int m=v.size(); ll res=0; for(...
分类:
其他好文 时间:
2014-11-13 23:58:45
阅读次数:
427
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- Get ...
分类:
其他好文 时间:
2014-11-13 20:50:45
阅读次数:
197
最近研究邮件备份,首先要使用客户端下载邮件,碰到不少问题:1. HOTMAIL GMAIL SINA的POP/IMAP默认居然都是关闭的,必须改成开放才行。 GMAIL改成开放以后还是没有成功,好像还要再开放一个东西。 最可气的是新浪,还必须绑定手机才能激活POP功能。 yahoo没有这...
分类:
其他好文 时间:
2014-11-13 20:29:59
阅读次数:
165
-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions{self.window=[[UIWindowalloc]initWithFrame:[[UIScreenmainScreen]bounds]];//Overridepointforcustomizationafterapplicationlaunch.//注册推送通知//[[UIApplic..
分类:
移动开发 时间:
2014-11-13 19:04:42
阅读次数:
440
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes...
分类:
其他好文 时间:
2014-11-13 18:07:10
阅读次数:
212
git status 查看当前分支状态
git add 需要提交的文件
git rm 需要删除的文件
git commit -m "注释说明"
git branch 查看当前是属于哪个分支,假如是puppis 分支
git pull --rebase 更新到与服务器同步
git push origin puppis 提交到p...
分类:
其他好文 时间:
2014-11-13 14:49:45
阅读次数:
179
iOS开发UI篇—Modal简单介绍一、简单介绍除了push之外,还有另外一种控制器的切换方式,那就是Modal任何控制器都能通过Modal的形式展?出来Modal的默认效果:新控制器从屏幕的最底部往上钻,直到盖住之前的控制器为?二、代码说明新建一个项目,在Application的代理中添加wind...
分类:
移动开发 时间:
2014-11-13 14:17:25
阅读次数:
301