码迷,mamicode.com
首页 > 2015年04月11日 > 全部分享
hihocoder(1014) Trie树
Trie树又称单词查找树,多应用与搜索引擎或者输入法的词频统计,利用字符串的公共前缀加快查找速度。第一次接触,不过代码还是比较好写的。Impl: 1 #include 2 #include 3 #include 4 5 struct TrieTree 6 { 7 int count;...
分类:其他好文   时间:2015-04-11 08:55:08    阅读次数:115
android code bbs for developer
http://bbs.aiyingli.com/forum.phphttp://www.eoeandroid.com/http://www.javaapk.com/demoTo be continue -------
分类:移动开发   时间:2015-04-11 08:52:39    阅读次数:151
How to trim and edit videos in Photos for OS X
Don't let the name fool you, Photos for OS X also stores all your videos.Whether you synced them from your iPhone or iPad usingiCloud Photo Library or...
分类:其他好文   时间:2015-04-11 08:52:11    阅读次数:201
高性能JSON解析器及生成器RapidJSON
RapidJSON是腾讯公司开源的一个C++的高性能的JSON解析器及生成器,同时支持SAX/DOM风格的API。直击现场RapidJSON是腾讯公司开源的一个C++的高性能的JSON解析器及生成器,同时支持SAX/DOM风格的API。项目源码地址:Github托管:https://github.c...
分类:Windows程序   时间:2015-04-11 08:54:29    阅读次数:217
python use pymysql
import pymysqlconn = pymysql.connect(host='localhost', port=3306, user='root', passwd='123456', db='mydb')cur = conn.cursor()cur.execute("SELECT * FRO...
分类:数据库   时间:2015-04-11 08:52:39    阅读次数:178
结巴分词中的词性对照
结巴分词标注兼容_ICTCLAS2008汉语词性标注集2014-01-20 | ouyang78... download计算所汉语词性标记集Version 3.0制订人:刘群 张华平 张浩计算所汉语词性标记集... 10. 说明... 11. 名词 (1个一类,7个二类,5个三类...
分类:其他好文   时间:2015-04-11 08:51:57    阅读次数:17203
Java知多少(32)instanceof
多态性带来了一个问题,就是如何判断一个变量所实际引用的对象的类型 。 C++使用runtime-type information(RTTI),Java 使用 instanceof 操作符。instanceof 运算符用来判断一个变量所引用的对象的实际类型,注意是它引用的对象的类型,不是变量的类型。请...
分类:编程语言   时间:2015-04-11 08:52:15    阅读次数:142
QQ空间玩吧HTML5游戏引擎使用比例分析
GameLook报道/“Cocos 2015开发者大会(春季)”于4月2日在国家会议中心圆满落下帷幕。在会上全新的3D编辑器,Cocos Runtime等产品重磅公布,给业界带来了Cocos这款国产引擎的最新动态。同时Cocos引擎创始人王哲也提到在目前国内最重要的HTML5游戏渠道玩吧中Cocos...
分类:Web程序   时间:2015-04-11 08:52:36    阅读次数:143
J2EE学习之路---SAX与DOM4J
我们将在dom4j的学习中使用到SAX,于是先对SAX进行了解。
分类:其他好文   时间:2015-04-11 08:53:25    阅读次数:136
Hunting for top class Java developers
Requirement: --------------------- * You **MUST** have excellent communication skills in English (both verbal and oral) * Real talent programmer (make sure you understand word **talent**) * Solid e...
分类:编程语言   时间:2015-04-11 07:50:16    阅读次数:133
Anagrams
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.solution:直接乘会超时~~所以只能用递归~~public clas...
分类:其他好文   时间:2015-04-11 07:50:41    阅读次数:132
译文---C#堆VS栈(Part Two)
前言 在本系列的第一篇文章《C#堆栈对比(Part One)》中,介绍了堆栈的基本功能和值类型以及引用类型在程序运行时的表现,同时也包含了指针作用的讲解。 本文为文章的第二部分,主要讲解参数在堆栈的作用。 注:限于本人英文理解能力,以及技术经验,文中如有错误之处,还请各位不吝指出。目录C#堆栈对比(...
分类:Windows程序   时间:2015-04-11 07:48:52    阅读次数:201
Leetcode: Binary Tree Right Side View
Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.For exam...
分类:其他好文   时间:2015-04-11 07:49:20    阅读次数:107
Xcode插件集合
//1. 注释代码提示VVDocumenter-Xcode https://github.com/onevcat/VVDocumenter-Xcode //2. 图片名称补齐KSImageNamed-Xcode https://github.com/ksuther/KSImageNamed-Xco....
分类:其他好文   时间:2015-04-11 07:49:27    阅读次数:162
Python 多线程教程:并发与并行
在批评Python的讨论中,常常说起Python多线程是多么的难用。还有人对 global interpreter lock(也被亲切的称为“GIL”)指指点点,说它阻碍了Python的多线程程序同时运行。因此,如果你是从其他语言(比如C++或Jav...
分类:编程语言   时间:2015-04-11 06:48:54    阅读次数:235
使用redis存储session
1、安装httpd,epel,redis,php的redis扩展yuminstall-yepel*(先安装epel扩展YUM源)yuminstall-yhttpdredisphp*redis(安装了epel之后,再安装redis,与php的redis扩展)2、启动httpd,redisservicehttpdrestartserviceredisrestart3、vim/var/www/html/01.php<?phpphpinfo();?>..
分类:其他好文   时间:2015-04-11 06:47:50    阅读次数:138
php代码修改php配置
分类:Web程序   时间:2015-04-11 06:47:50    阅读次数:112
1648条   上一页 1 ... 83 84 85 86 87 88 89 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!