摘要: 1、weak和strong区别不同的是 当一个对象不再有strong类型的指针指向它的时候 它会被释放 ,即使还有weak型指针指向它。 一旦最后一个strong型指针离去 ,这个对象将被释放,所有剩余的weak型指针都将被清除。 可能有个例子形容是妥当的。 想象我们的对象是一条狗,狗想要跑掉... 阅读全文
posted @ 2015-11-02 16:58 锄,禾日当午 阅读(221) 评论(0) 推荐(0) 编辑
摘要: ARC是什么ARC是iOS 5推出的新功能,全称叫 ARC(Automatic Reference Counting)。简单地说,就是代码中自动加入了retain/release,原先需要手动添加的用来处理内存管理的引用计数的代码可以自动地由编译器完成了。该机能在 iOS 5/ Mac OS X 1... 阅读全文
posted @ 2015-11-02 16:51 锄,禾日当午 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。作者:高峰链接:http://www.zhihu.com/question/19604641/answer/44151044来源:知乎1. 什么是arc?(arc是为了解决什么问题诞生的?)2. 请解释以下keywords的区别: ... 阅读全文
posted @ 2015-11-02 16:48 锄,禾日当午 阅读(242) 评论(0) 推荐(0) 编辑
摘要: Remove ElementGiven an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. ... 阅读全文
posted @ 2015-11-02 11:15 锄,禾日当午 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Remove Duplicates from Sorted Array题目:Given a sorted array, remove the duplicates in place such that each element appear only once and return the new ... 阅读全文
posted @ 2015-10-26 20:40 锄,禾日当午 阅读(124) 评论(0) 推荐(0) 编辑
摘要: Valid Parentheses题目:Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets... 阅读全文
posted @ 2015-10-23 10:21 锄,禾日当午 阅读(126) 评论(0) 推荐(0) 编辑
摘要: Remove Nth Node From End of List题目:Given a linked list, remove the nth node from the end of list and return its head.For example, Given linked list:... 阅读全文
posted @ 2015-10-23 09:22 锄,禾日当午 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Longest Common Prefix题目:Write a function to find the longest common prefix string amongst an array of strings.找出所有字符串的最长公共前缀。解题:string&&vectorhttp://b... 阅读全文
posted @ 2015-10-22 22:02 锄,禾日当午 阅读(180) 评论(0) 推荐(0) 编辑
摘要: Roman to Integer题目:Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.解题: 首先我们先观察罗马数字的规律罗马数字共有七... 阅读全文
posted @ 2015-10-19 15:44 锄,禾日当午 阅读(219) 评论(0) 推荐(0) 编辑
摘要: Palindrome Number题目:Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integer... 阅读全文
posted @ 2015-10-18 09:21 锄,禾日当午 阅读(160) 评论(0) 推荐(0) 编辑