码迷,mamicode.com
首页 >  
搜索关键字:with_dict    ( 5061个结果
Python动态加载模块
需求:实现一个简单的pyton程序,接收两个参数:plugin_name, data,根据不同的plugin_name定位到不同的逻辑处理模块并进行输出。实现方案:使用python的库函数:load_source,将插件模块加载到一个dict中key为模块名称,value为类的实例,核心代码:def...
分类:编程语言   时间:2014-08-04 01:39:56    阅读次数:393
leetcode Word Break II
Give two versions of WA code: Version 1: Runtime Error: Find the bug class Solution { public: void find(const string& s, const unordered_set& dict, vector& res) { int i, j, len = s.length(); ...
分类:其他好文   时间:2014-08-03 15:21:27    阅读次数:329
Redis实现原理(2)--字典
1、 Dict2.1 数据结构定义dict.h// 哈希表结构typedef struct dictht { dictEntry **table; //哈希表数组指针 unsigned long size; //哈希表大小 unsigned long sizemask; //掩码...
分类:其他好文   时间:2014-08-03 15:11:05    阅读次数:193
javascript 之string.format
function(){ 'use strict'; if(String.prototype.format) return; String.prototype.format = function(args){ var _dict = typeof(args) == 'object' ? args : ...
分类:编程语言   时间:2014-08-02 01:36:33    阅读次数:230
【python】简单的网页内容获取 - 有道翻译英文
正则表达式与python的网页操作练习一:importurllib.request importre qname=input(‘inputenglish:‘) qname=qname.strip() url=‘http://dict.youdao.com/search?le=eng&q=‘+qname+‘&keyfrom=dict.top‘ html=urllib.request.urlopen(url) source=html.read().decode(‘U..
分类:编程语言   时间:2014-07-31 17:21:47    阅读次数:242
python类型
学了这么久,才发现原来还有好多基础知识根本不会...标准类型:整型 int 布尔型 bool 长整型 long 浮点型 float 复数型 complex 字符串 str 列表 list元组 tuple 字典 dict 其他内建类型:类型对象的类型 typeNone NoneType文件 file函...
分类:编程语言   时间:2014-07-31 16:34:46    阅读次数:274
glusterfs 中的字典查询
glusterfs文件系统是一个分布式的文件系统,但是与很多分布式文件系统不一样,它没有元数服务器,听说swift上也是应用了这个技术的。glusterfs中每个xlator的配置信息都是用dict进行管理的。dict这玩意儿,说白了就是一个hash表,是一个key/value的内存数据库。今天.....
分类:其他好文   时间:2014-07-31 16:24:47    阅读次数:229
leetcode--007 word break I
注意:不一定是一分为2 1 package leetcode; 2 3 import java.util.Set; 4 5 public class WordBreak11 { 6 public boolean wordBreak(String s, Set dict) { 7 ...
分类:其他好文   时间:2014-07-31 16:11:16    阅读次数:171
map、hash_map、unordered_map 的思考
#include map dict;map是基于红黑树实现的,可以快速查找一个元素是否存在,是关系型容器,能够表达两个数据之间的映射关系。dict.insert(make_pair("abc",1));dict.count("mn"); 看看dict中含有 mn的个数,因为元素是唯一的,所以这个返回...
分类:其他好文   时间:2014-07-30 23:52:05    阅读次数:357
shell 检查一个单词是否在字典中
#!/bin/bash#文件名:checkword.shword=$1grep "^$1$" /usr/share/dict/linux.words -qif [ $? -eq 0 ];then echo $word is a dictionary word;else e...
分类:其他好文   时间:2014-07-30 17:10:13    阅读次数:180
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!