SkillAgentSearch skills...

Suffixtree

A Go implementation of a Generalized Suffix Tree using Ukkonen's algorithm

Install / Use

/learn @ljfuyuan/Suffixtree
About this skill

Quality Score

0/100

Supported Platforms

Zed

README

Generalized Suffix Tree

A Go implementation of a Generalized Suffix Tree using Ukkonen's algorithm

The package just translate from Alessandro Bahgat Shehata's java version to golang and do some optimization
For more details, you should look at abahgat/suffixtree

Usage

package main

import (
	"fmt"

	"github.com/ljfuyuan/suffixtree"
)

func main() {
	words := []string{"banana", "apple", "中文app"}
	tree := suffixtree.NewGeneralizedSuffixTree()
	for k, word := range words {
		tree.Put(word, k)
	}
	indexes := tree.Search("a", -1)

	fmt.Println(indexes)
	//[0 2 1]
	for _, index := range indexes {
		fmt.Println(words[index])
	}
	//banana
	//中文app
	//apple
}

License

This Generalized Suffix Tree is released under the Apache License 2.0

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Related Skills

View on GitHub
GitHub Stars12
CategoryDevelopment
Updated1y ago
Forks10

Languages

Go

Security Score

80/100

Audited on Dec 17, 2024

No findings