上一页 1 ··· 8 9 10 11 12 13 14 15 下一页
摘要: 题目描述:(题目链接)There are two sorted arraysnums1andnums2of size m and n respectively. Find the median of the two sorted arrays. The overall run time comple... 阅读全文
posted @ 2015-10-02 17:38 skycore 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 第一次读这本书的时候是大三初,现在打算重读一遍!。第一章 导言1. 学习一门新程序设计语言的唯一途径就是用它来写程序。2. 每个程序都从main函数的起点开始执行。3. 在C语言中,所有变量必须先声明后使用。4. C语言中的基本数据类型的大小取决于具体机器。5. 在允许使用某种类型变量值的任何场合,... 阅读全文
posted @ 2015-10-02 16:33 skycore 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 忘记了出处,侵删!!!#阿里一面1.Android的activity2.Category支持添加属性与成员变量吗3.是否了解设计模式, 用过哪些4.iOS7之后, 蓝牙的围栏功能5.MVC是否了解?介绍下使用情况。6.MVC里面, View怎么通知到Model7.了解delegate吗?并介绍8.说... 阅读全文
posted @ 2015-10-02 13:20 skycore 阅读(642) 评论(0) 推荐(0) 编辑
摘要: Core Data框架提供的是对象-关系映射功能,可以将Objective-C对象转化成数据,并将这些数据保存到SQLite数据库文件中。此外,Core Data也可以将保存后的数据还原成Objective-C对象。在Core Data中,表格(SQLite)和类(Objective-C)称为实... 阅读全文
posted @ 2015-09-30 16:56 skycore 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 题目描述:(链接)Follow up for "Search in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity? How and why?Write a fu... 阅读全文
posted @ 2015-09-30 15:22 skycore 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 题目描述:(链接)Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7might become4 5 6 7 0 1 2).You are given a targe... 阅读全文
posted @ 2015-09-30 09:54 skycore 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 题目描述:(链接)Follow up for "Remove Duplicates":What if duplicates are allowed at mosttwice?For example,Given sorted arraynums=[1,1,1,2,2,3],Your function ... 阅读全文
posted @ 2015-09-29 17:54 skycore 阅读(118) 评论(0) 推荐(0) 编辑
摘要: NSURL对象负责以URL的格式保存web应用的位置。对大多数Web服务,URL将包含基地址,Web应用名和需要传达的参数。NSURLRequest对象负责保存需要传送给Web服务器的全部数据,这些数据包括:一个NSURL对象、缓存方案(caching policy),等待Web服务器响应的最长时间... 阅读全文
posted @ 2015-09-29 10:06 skycore 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 转载:http://akunamotata.iteye.com/blog/1724416CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 3.0f); progressView.transform = transform;... 阅读全文
posted @ 2015-09-24 16:04 skycore 阅读(1197) 评论(0) 推荐(0) 编辑
摘要: 题目描述:(https://leetcode.com/problems/remove-duplicates-from-sorted-array/)Given a sorted array, remove the duplicates in place such that each element a... 阅读全文
posted @ 2015-09-24 15:59 skycore 阅读(113) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 下一页