Suffix array module in Go

Source: Internet
Author: User

 

The full-text search on the golang.org website is implemented based on suffix array [http://t.cn/hbjekg], which can be used to add suffix array to the golang standard library. [Http://t.cn/hbjekd]

 

Package main <br/> Import "FMT" <br/> Import "index/suffixarray" <br/> func main () {<br/> FMT. println ("Hello, world") <br/> STR: = 'the go programming language is an open source project to make programmers more productive. go is expressive, concise, clean, and efficient. its concurrency mechanic ISMs make it easy to write programs that get the most out of multicore and networked machines, while its novel type system enables flexible and modular program construction. go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. it's a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language. '<br/> index: = suffixarray. new ([] Byte (STR) <br/> offsets1: = index. lookup ([] Byte ("program"),-1) <br/> for _, I: = range offsets1 {<br/> FMT. println (STR [I:]) <br/>}< br/> 

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.