Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
For example, given
s = "leetcode",
dict = ["leet"...
分类:
其他好文 时间:
2015-03-13 23:53:03
阅读次数:
403
找了半天,本着不折腾得原则,记录完成着俩功能的库: XML-> dict https://github.com/martinblech/xmltodict dict -> XML https://github.com/quandyfactory/dicttoxml...
分类:
编程语言 时间:
2015-03-13 22:28:57
阅读次数:
162
NSDictionary *dict=@{@"username":user,@"password":password};
AFHTTPRequestOperationManager *manager=[AFHTTPRequestOperationManager manager];
[manager GET:@"http://192.168.0.179:8080/Myweb...
分类:
移动开发 时间:
2015-03-13 18:53:10
阅读次数:
162
//该方法是检查字典中是否有nil 的,有nil就转行成""- (NSDictionary *)checkDict:(NSDictionary *)sender{ NSMutableDictionary * dict_mutable = [[NSMutableDictionary alloc] i....
分类:
其他好文 时间:
2015-03-13 15:50:06
阅读次数:
119
1.复习一下dir()和__dict__. >>> class C(object): pass >>> c=C() >>> dir(C) [‘__class__‘, ‘__delattr__‘, ‘__dict__‘, ‘__doc__‘, ‘__format__‘, ‘__getattribute__‘, ‘__hash__‘, ‘__init__‘, ‘__module_...
分类:
其他好文 时间:
2015-03-12 11:45:19
阅读次数:
169
迭代dict也要讲求效率,不然就要走进性能陷阱以下三种迭代方式:keys,iterkeys, hashkeyimport timeitDICT_SIZE = 100 * 100000testDict = dict()for i in xrange(DICT_SIZE): testDict[i]...
分类:
编程语言 时间:
2015-03-07 15:22:04
阅读次数:
146
OrderedDict可以实现一个FIFO(先进先出)的dict,当容量超出限制时,先删除最早添加的Key: #!/usr/bin/env?python
#-*-?coding:?utf8?-*-
from?collections?import?OrderedDict
class?LastUpdatedOrde...
分类:
其他好文 时间:
2015-03-06 17:32:17
阅读次数:
513
vim编辑器模式下自动补全下载pydiction插件unzip-qpydiction.zipmkdir-p~/.vim/after/ftplugin/mkdir-p~/.vim/tools/pydiction/cdpydiction-1.2cppython_pydiction.vim~/.vim/after/ftplugin/cpcomplete-dict~/.vim/tools/pydiction/vim~/.vimrc添加:filetypepluginonletg:pyd..
分类:
编程语言 时间:
2015-03-06 17:19:46
阅读次数:
174
cURL.1 手册页 名称 cURL - transfer a URL 摘要 cURL[选项] [URL... ] 描述 cURL 是一个向服务器或从服务器传输数据的工具,它支持HTTP 、HTTPS、 FTP 、FTPS 、SCP、SFTP、TFTP、DICT、TELNET、LDAP 或FILE 等协...
分类:
Web程序 时间:
2015-03-06 11:30:02
阅读次数:
199
一是先判断一下 key 是否存在,用 in 操作符:if 'Paul' in d: print d['Paul']如果 'Paul' 不存在,if语句判断为False,自然不会执行 print d['Paul'] ,从而避免了错误。二是使用dict本身提供的一个 get 方法,在Key不存在的...
分类:
其他好文 时间:
2015-03-04 18:21:53
阅读次数:
124