码迷,mamicode.com
首页 >  
搜索关键字:with_dict    ( 5061个结果
redis源码解析之dict数据结构
dict 是redis中最重要的数据结构,存放结构体redisDb中。
分类:其他好文   时间:2014-06-28 16:35:44    阅读次数:225
python基础学习05(核心编程第二版)部分
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #dict{键:值}...
分类:编程语言   时间:2014-06-22 23:34:14    阅读次数:292
[LeetCode] Word Break
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 e...
分类:其他好文   时间:2014-06-18 22:11:44    阅读次数:200
python flask model 序列化
class DictSerializable(object):     def as_dict(self,*args):         result = OrderedDict()         keys=args or self.__mapper__.c.keys()         for key in keys:             if hasattr(self,key)...
分类:编程语言   时间:2014-06-18 06:25:55    阅读次数:596
[LeetCode] Word Break II
Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.Return all such po...
分类:其他好文   时间:2014-06-17 21:15:35    阅读次数:211
《python源码剖析》笔记 python中的Dict对象
1.PyDictObject对象 --> C++ STL中的map是基于RB-tree的,搜索时间复杂度是O(logN) PyDictObject采用了hash表,时间复杂度是O(1) typedef struct{ Py_ssize_t me_hash; //me_key的hash值,避免每次查询都要重新计算一遍hash值 PyObject *me_key; PyObject *me_value; }PyDictEntry; 将(key,value)对称为entry,它可以在3种状态...
分类:编程语言   时间:2014-06-16 21:22:45    阅读次数:272
《python源码剖析》笔记 python中的字符串对象
1. PyStringObject --> 变长不可变对象 typedef struct{ PyObject_VAR_HEAD//ob_size变量保存着对象中维护的可变长度内存的大小 longob_shash; //缓存该对象的hash值,用于dict的查询 intob_sstate; //标志该对象是否经过intern机制的处理 char ob_sval[1];// 字符指针,指向一段内存 } PyStri...
分类:编程语言   时间:2014-06-14 17:30:48    阅读次数:309
Swift学习笔记(5)--字典
1.定义//1.基本定义 [key 1: value 1, key 2: value 2, key 3: value 3]var dict = ["name":"Xiaoqin","sex":"female","age":"20"]for (key,value) in dict { print...
分类:其他好文   时间:2014-06-14 09:59:19    阅读次数:182
黑马程序员_学习IOS之字典常用的方法
字典是无序的 数组是有序的。字典分为:可变字典和不可变字典不可变字典对象NSDictionary * dict = [[NSDictionary alloc]initWithObjectsAndKeys:@"one",@"1",@"two",@"2",@"three",@"3",@"four",@"...
分类:移动开发   时间:2014-06-12 06:25:50    阅读次数:324
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!