Jieba分词Go语言版本:GoJieba 经验

GoJieba 是 Jieba 分词的 Go 语言版本分词库。 用法 go get github.com/yanyiwu/gojieba 示例代码请见 example/demo.go cd example

jopen 2015-09-15   38485   0

中文simhash算法库的Go语言版 经验

simhash 值是多少,在之前写的『 simhash 』库没有可通过参数调试的命令行程序。 但是呢,想在 C++ 版本的 simhash 上加上通过命令行传参和配置的话,又挺蛋疼的。 每次调试都要自己 git

jopen 2015-10-19   11828   0
算法  

C语言版的Lucene全文搜索引擎库,Apache Lucy 0.4.3 发布 资讯

Apache Lucy 是一个全文搜索引擎库,使用 C 语言编写,主要面向一些动态语言,目前提供 Perl 语言的绑定。相当于是 C 语言版的 Lucene 。 Apache Lucy 0.4.3

jopen 2016-01-19   10554   0
P23

  算法大全(数据结构) 文档

算法大全(CC++) 一、 数论算法 1.求两数的最大公约数 function gcd(a,b:integer):integer; begin if b=0 then gcd:=a else gcd:=gcd

proof 2014-02-04   596   0
P92

  数据结构常见算法 文档

1. 数据结构算法 2. 数据结构数据结构是一门研究非数值计算的程序设计问题中的操作对象(结点)以及它们之间关系和操作等的学科。 1968 年克努思教授开创了数据结构的最初体系,他所著的《计算机程序设

dreamwhere 2011-10-18   4237   0
方案  
P

Python 数据结构与算法 文档

This book is about the fundamentals of data structures and algorithms--the basic elements from which large and complex software artifacts are built. To develop a solid understanding of a data structure requires three things: First, you must learn how the information is arranged in the memory of the computer. Second, you must become familiar with the algorithms for manipulating the information contained in the data structure. And third, you must understand the performance characteristics of the data structure so that when called upon to select a suitable data structure for a particular application, you are able to make an appropriate decision. <br> This book also illustrates object-oriented design and it promotes the use of common, object-oriented design patterns. The algorithms and data structures in the book are presented in the Python programming language. Virtually all the data structures are presented in the context of a single class hierarchy. This commitment to a single design allows the programs presented in the later chapters to build upon the programs presented in the earlier chapters.

gneg 2015-07-22   251   0

从Python的数据结构说起 经验

原文 http://www.litrin.net/2015/06/23/从python的数据结构说起/ 正值毕业季,这些天一直忙于面试各个踏出校门的大学生。惯例性的,我会出一些看似很简单,但其实很

jopen 2015-06-23   20308   0
P53

  数据结构重要算法 文档

版权:wuliming_sc 修改:Air_sky 说明:本资料是Air_sky修改wuliming_sc整理的数据结构材料.仅供各位考研师弟师妹们方便之用,如有什么疑议,请通知Air_sky(iceman0481@163

hongjuntu 2011-12-29   2683   0
P13

  java数据结构 文档

栈是非线性结构B.栈是一种树状结构C.栈具有先进先出的特征D.栈有后进先出的特征 6.链表不具有的特点是(B)A.不必事先估计存储空间       B.可随机访问任一元素 C.插入删除不需要移动元素     

yanziming 2017-01-02   9850   0

数据结构-链表 博客

链表是一种物理存储单元上非连续、非顺序的存储结构。 数据元素的逻辑顺序是通过链表中的指针链接次序实现的。 链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。 每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。 相比于线性表顺序结构,链表比较方便插入和删除操作。 链表最明显的好处就是,常规数组排列关联项目的方式可能不同于这些数据项目在记忆

546410275 2011-08-20   1258   0
P4

  数据结构试卷 文档

sequence of elements in sequential memory locations c. a set of elements chained together with pointers

mxxhdzh 2016-11-09   2343   0
P9

  Java中的数据结构 文档

线性表,链表,哈希表是常用的数据结构,在进行Java开发时,JDK已经为我们提供了一系列相应的类来实现基本的数据结构。这些类均在java.util包中。本文试图通过简单的描述,向读者阐述各个类的作用以及如何正确使用这些类。

lcxtzjz 2011-12-01   4249   0

C语言数据结构之二叉树排序 代码段

注意:*p既可能是*parent的左孩子也可能是其右孩子,而*child可能是*p的左孩子或右孩子,故共有4种状态。 c.*p有两个孩子 先令q=p,将被删结点的地址保存在q中;然后找*q的中序后继*p,并在查找过程

jopen 2015-06-30   1655   0
C/C++  
P19

  达内C++学员笔记2-数据结构与算法 文档

--------------------------------- 数据结构和算法研究各种通用问题并提出了相应的解决方案 数据结构侧重变量之间的关系 算法侧重如何使用变量解决问题 数字之间的逻辑结构指人想象的数字之间的关系

sty87981 2016-01-10   361   0
P36

  数据结构C语言描述第二版 文档

第一章 绪论 一、问答题 1.         什么是数据结构? 2.         叙述四类基本数据结构的名称与含义。 3.         叙述算法的定义与特性。 4.         叙述算法的时间复杂度。

tacheno 2011-11-11   2389   0

C语言常用数据结构以及排序,搜索等算法实现 - htl-lite 经验

几乎每一个软件项目都要用到诸如链表,搜索树,堆,哈希表等一系列常用数据结构以及排序,搜索等算法。究竟是用现有的标准库(stl、boost),还是根据项目需要自己实现呢? 目前htl-lite包括v

fmms 2012-01-18   55016   0
算法   C/C++  
P321

  数据结构各种算法实现(C++模板) 文档

QueueNode.h 255 LinkQueue.h 259 Sort.h 263 test.cpp 278 数据结构算法实现 2008-9-3 1、顺序表 Seqlist.h const int DefaultSize=100;

losemymind 2012-10-27   259   0

C++并发数据结构算法库 CDS 资讯

CDS是一个 C++ 模板库,包含 lock-free and fine-grained 算法。 包含一系列并发数据结构的实现: 顺序支持的原子操作 SMR算法 数据结构: 栈 队列: Michael

fmms 2011-09-14   23208   0
C/C++  

C++并发数据结构算法库 CDS 经验

CDS是一个 C++ 模板库,包含 lock-free and fine-grained 算法。 包含一系列并发数据结构的实现: 顺序支持的原子操作 SMR算法 数据结构: 栈 队列: Michael

fmms 2012-01-26   79828   0
算法   C/C++  

C++开源:TastyLib-一个数据结构和算法库(面试常见算法与数据结构的实现) 经验

TastyLib TastyLib is a c++ library of data structures and algorithms. It is also a header-only library

JefZnn 2017-01-24   30435   0
1 2 3 4 5 6 7 8 9 10