您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Simple Linear Work Suffix Array Construction

  2. Abstract. A suffix array represents the suffixes of a string in sorted order. Being a simpler and more compact alternative to suffix trees, it is an important tool for full text indexing and other string processing tasks. We introduce the skew algor
  3. 所属分类:其它

    • 发布日期:2009-05-11
    • 文件大小:192512
    • 提供者:xibuniuzai1987
  1. suffix tree 代码

  2. suffix tree源代码,有注释!大家一起努力学习吧
  3. 所属分类:Java

    • 发布日期:2009-05-12
    • 文件大小:49152
    • 提供者:yanweishihun
  1. c语言suffix tree库

  2. 构造前缀树,深度广度优先搜索等功能。 This library is an implementation of the suffix tree algorithm applied to indexing. A search on "suffix trees Ukkonen" on a search engine should give you an idea of what I'm talking about. The interesting points are a linear index
  3. 所属分类:C

    • 发布日期:2009-08-12
    • 文件大小:729088
    • 提供者:infosec_phoenix
  1. suffix tree

  2. 一篇关于后缀树方面的PPT,讲解的很清楚,希望对大家有所帮助
  3. 所属分类:专业指导

    • 发布日期:2009-10-21
    • 文件大小:2097152
    • 提供者:liutaobit
  1. ModiffySuffix

  2. ModifySuffix can help you modify a file's suffix in bulk. Also it supports the files in a sub-folder. Besides, it can specify one single file and only change it. The field with asterisk (*) is a must. The field "Directory" can be filled by manually
  3. 所属分类:专业指导

    • 发布日期:2009-11-11
    • 文件大小:17408
    • 提供者:liuzuchong
  1. 后缀数组(Suffix Array)

  2. 后缀数组(Suffix Array)标程。采用DA算法。RMQ预处理询问。
  3. 所属分类:其它

    • 发布日期:2010-03-06
    • 文件大小:2048
    • 提供者:Dumbear
  1. Constructing Compressed Suffix Arrays with Large Alphabets

  2. Constructing Compressed Suffix Arrays with Large Alphabets 生物信息论文
  3. 所属分类:专业指导

    • 发布日期:2010-03-19
    • 文件大小:177152
    • 提供者:passionthean
  1. Describing and testing two new linear Suffix Array Construction Algorithms

  2. Describing and testing two new linear Suffix Array Construction Algorithms 生物信息论文
  3. 所属分类:专业指导

    • 发布日期:2010-03-19
    • 文件大小:205824
    • 提供者:passionthean
  1. Two Efficient Algorithms for Linear Suffix Array Construction

  2. Two Efficient Algorithms for Linear Suffix Array Construction 生物信息论文
  3. 所属分类:其它

    • 发布日期:2010-03-19
    • 文件大小:295936
    • 提供者:passionthean
  1. 后缀树线性时间实现--c++

  2. 后缀树线性时间构建,Ukkoen算法 Suffix tree creation
  3. 所属分类:其它

    • 发布日期:2010-04-15
    • 文件大小:19456
    • 提供者:xuminhanfan
  1. suffix tree

  2. suffix tree build in C++
  3. 所属分类:C++

    • 发布日期:2010-12-03
    • 文件大小:23552
    • 提供者:pegasuslove
  1. Suffix arrays

  2. Suffix arrays ppt演示
  3. 所属分类:专业指导

    • 发布日期:2008-04-23
    • 文件大小:844800
    • 提供者:zfy0702
  1. Suffix Arrays

  2. A new method for on-line string searches by U. Manber and G. Myers(1993) Simple linear work suffix array construction by J. Karkkainen and P. Sanders(2002)
  3. 所属分类:C/C++

    • 发布日期:2011-12-11
    • 文件大小:3145728
    • 提供者:huameili
  1. suffix tree

  2. suffix tree is very good,i like it
  3. 所属分类:Android

    • 发布日期:2012-12-10
    • 文件大小:418816
    • 提供者:chenxumi3
  1. suffix array

  2. 讲解后缀数组的论文,不是国家集训队论文。是国外论文
  3. 所属分类:专业指导

    • 发布日期:2013-09-10
    • 文件大小:380928
    • 提供者:xishisugan
  1. suffix tree—后缀树的典型应用

  2. Suffix trees have numerous applications, often providing linear-time solutions to challenging string problems A selection of them: Exact matching Common substrings, with applications Matching statistics Suffix arrays Genome-scale projects
  3. 所属分类:其它

    • 发布日期:2008-11-27
    • 文件大小:636928
    • 提供者:pku_liuyanjun
  1. LM2576的TO−220 TV SUFFIX CASE 314B−05 pcb库

  2. LM2576PACKAGE DIMENSIONS TO−220 TV SUFFIX CASE 314B−05 ISSUE J 自己做的封装库仅供参考
  3. 所属分类:数据库

    • 发布日期:2019-02-25
    • 文件大小:277504
    • 提供者:qq_36059278
  1. Algorithm-Ukkonen-s-Suffix-Tree-Algorithm.zip

  2. Algorithm-Ukkonen-s-Suffix-Tree-Algorithm.zip,ukkonen的后缀树算法,一个用python实现的完整版本,算法是为计算机程序高效、彻底地完成任务而创建的一组详细的准则。
  3. 所属分类:其它

    • 发布日期:2019-09-17
    • 文件大小:5120
    • 提供者:weixin_38743602
  1. Codeforces D1/D2. Prefix-Suffix Palindrome (Manacher) /详解

  2. D1. Prefix-Suffix Palindrome (Easy version) D2. Prefix-Suffix Palindrome (Hard version) 题意: 对于给出的字符串,可截取其前缀和后缀,求能组成的最长回文串。 思路: 正常来说暴力的思路是先匹配前缀pre和后缀suf,找到第一个不匹配的l和r,然后在由l开始从左向右求最长的回文串palindrome,以及由r开始从右向左求最长的回文串palindrome,那么pre+palindrome+suf就是答案。 很显
  3. 所属分类:其它

    • 发布日期:2021-01-03
    • 文件大小:50176
    • 提供者:weixin_38717574
  1. public-suffix:发布更新版本`public-suffix.json`-源码

  2. 公共后缀 一个存储库,为PyFunceble项目分发更新版本的public-suffix.json 。 执照 MIT License Copyright (c) 2019, 2020, 2021 PyFunceble Copyright (c) 2017, 2018, 2019, 2020, 2021 Nissar Chababy Permission is hereby granted, free of charge, to any person obtaining a copy of thi
  3. 所属分类:其它

    • 发布日期:2021-02-09
    • 文件大小:45056
    • 提供者:weixin_42181888
« 12 3 4 5 6 7 8 9 10 ... 17 »