class Solution {
public:
bool wordBreak(string s, unordered_set &dict){
int len = s.length();
vector match(len + 1, false);
match[0] = true;
for (int i = 1; i <= len; i++){
for (int k = 0;...
分类:
其他好文 时间:
2014-09-01 22:49:03
阅读次数:
273
python中自带了处理python的模块,使用时候直接import json即可。使用loads方法即可将json字符串转换成python对象,对应关系如下: JSON Python object dict array list string unicode num...
分类:
Web程序 时间:
2014-09-01 09:18:02
阅读次数:
269
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"...
分类:
其他好文 时间:
2014-08-31 20:07:12
阅读次数:
233
1 class Solution { 2 vector > pos; 3 vector sen; 4 public: 5 6 vector wordBreak(string s, unordered_set &dict) { 7 getVector(s,d...
分类:
其他好文 时间:
2014-08-29 00:03:36
阅读次数:
256
在python中,一般可以使用pickle类来进行python对象的序列化,而cPickle提供了一个更快速简单的接口,如python文档所说的:“cPickle -- A faster pickle”。cPickle可以对任意一种类型的python对象进行序列化操作,比如list,dict,甚至是...
分类:
编程语言 时间:
2014-08-28 19:46:25
阅读次数:
261
class?Singleton2(type):???? ????def?__init__(cls,?name,?bases,?dict):???? ????????super(Singleton2,?cls).__init__(name,?bases,?dict)???? ????????cls._instan...
分类:
编程语言 时间:
2014-08-27 11:12:48
阅读次数:
241
list 对象 list 对象的定义 list对象内部是使用数组实现,在数组中存储的是指针,指向要保存的对象。 allocated是list中数组的大小,ob_size是当前已经使用的数组大小。 typedef?struct?{
????//?可变长对...
分类:
编程语言 时间:
2014-08-26 15:42:36
阅读次数:
361
1 change docker password #cat /ect/redhat-relase #passwd root If you have error like this /usr/share/cracklib/pw_dict.pwd: No such file or directory P...
分类:
其他好文 时间:
2014-08-26 11:18:55
阅读次数:
231
curl是利用URL语法在命令行方式下工作的开源文件传输工具。它被广泛应用在Unix、多种Linux发行版中,并且有DOS和Win32、Win64下的移植版本。概念编辑它支持很多协议:FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE 以及 LDAP...
分类:
其他好文 时间:
2014-08-25 21:08:14
阅读次数:
1253
数据字典结构有两部分组成:1. 基表:以$结尾的系统表,在创建数据库的时候,oracle自动创建的表2. 用户可以访问的视图数据字典的种类DICTIONARY:简称DICT,所有的数据字典,都可以通过DICT查看DBA开头的:sys用户所拥有的,普通用户默认不能访问,只有sys授权,才能访问,存储了...
分类:
Web程序 时间:
2014-08-24 17:51:22
阅读次数:
200