It is said that in 2011, there are about 100 graduate schools ready to proceed over 40,000 applications in Zhejiang Province. It would help a lot if y ...
分类:
其他好文 时间:
2018-10-02 18:00:34
阅读次数:
132
A-app: Info--URL Types--URL Schemes:A-app(一个标识,允许别的app调用本App) info.plist 添加白名单: LSApplicationQueriesSchemes(Array) B-app(String) //使用 - (void)jumpToBa ...
分类:
移动开发 时间:
2018-10-02 17:59:32
阅读次数:
206
Every positive number can be presented by the exponential form.For example, 137 = 2^7 + 2^3 + 2^0。 Let's present a^b by the form a(b).Then 137 is pres ...
分类:
其他好文 时间:
2018-10-02 17:43:42
阅读次数:
117
1. 概述 HashSet是基于HashMap来实现的,操作很简单,更像是对HashMap做了一次“封装”,而且只使用了HashMap的key来实现各种特性,我们先来感性的认识一下这个结构: 其大致的结构是这样的: map是整个HashSet的核心,而PRESENT则是用来造一个假的value来用的 ...
分类:
编程语言 时间:
2018-10-02 17:13:06
阅读次数:
211
This is a follow up of Shortest Word Distance. The only difference is now word1 could be the same as word2. Given a list of words and two words word1 ...
分类:
其他好文 时间:
2018-10-02 14:13:49
阅读次数:
264
Connections and Translators NAT TCP Options Every option begins with a 1-byte kind that specifies the type of option. Options that are not understood ...
分类:
其他好文 时间:
2018-10-01 17:07:19
阅读次数:
194
The count and say sequence is the sequence of integers with the first five terms as following: 1. 1 2. 11 3. 21 4. 1211 5. 111221 1 is read off as "on ...
分类:
其他好文 时间:
2018-10-01 11:59:20
阅读次数:
104
【Redirect at origin 'http://xxx.xx.com' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin' header ...
分类:
Web程序 时间:
2018-10-01 01:07:42
阅读次数:
764
Xcode 7.1.1 improves stability and fixes critical issues in interface Builder,debugging,and UI testing.Xcode 7.1 includes Swift2.1 and SDKs for iOS 9. ...
分类:
其他好文 时间:
2018-09-30 18:23:13
阅读次数:
202
defaultdict()和namedtuple()是collections模块里面2个很实用的扩展类型。一个继承自dict系统内置类型,一个继承自tuple系统内置类型。在扩展的同时都添加了额外的很酷的特性,而且在特定的场合都很实用。 defaultdict() 定义以及作用 返回一个和dicti ...
分类:
其他好文 时间:
2018-09-30 16:46:22
阅读次数:
153