ptrie

package module
v0.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 27, 2019 License: Apache-2.0 Imports: 9 Imported by: 4

README

Trie (Prefix tree)

GoReportCard GoDoc

This library is compatible with Go 1.11+

Please refer to CHANGELOG.md if you encounter breaking changes.

Motivation

The goal of this project is to provide serverless prefix tree friendly implementation. where one function can easily building tree and publishing to some cloud storge. Then the second load trie to perform various operations.

Introduction

A trie (prefix tree) is a space-optimized tree data structure in which each node that is merged with its parent. Unlike regular trees (where whole keys are from their beginning up to the point of inequality), the key at each node is compared chunk by chunk,

Prefix tree has the following application:

  • text document searching
  • rule based matching
  • constructing associative arrays for string keys

Character comparision complexity:

Brute Force: O(d n k) Prefix Trie: O(d log(k))

Where d: number of characters in document n: number of keywords k: average keyword length

Usage
  1. Building

    trie := ptrie.New()
    
    for key, value := pairs {
         if err = trie.Put(key, value);err != nil {
         	log.Fatal(err)
         }
    }
    
    writer := new(bytes.Buffer)
	if err := trie.Encode(writer);err != nil {
		log.Fatal(err)
	}
	encoded := write.Bytes()
	//write encode data

  1. Loading

    //V type can be any type
    var v *V
    

    trie := ptrie.New()
    trie.UseType(reflect.TypeOf(v))
    if err := trie.Decode(reader);err != nil {
    	log.Fatal(err)
    }

  1. Traversing (range map)

    trie.Walk(func(key []byte, value interface{}) bool {
		fmt.Printf("key: %s, value %v\n", key, value)
		return true
	})

  1. Lookup

    has := trie.Has(key)
    value, has := trie.Get(key)

  1. MatchPrefix

    var input []byte
    ...

    matched := trie.MatchPrefix(input,  func(key []byte, value interface{}) bool {
        fmt.Printf("matched: key: %s, value %v\n", key, value)
        return true 
    })

  1. MatchAll

    var input []byte
    ...

    matched := trie.MatchAll(input,  func(key []byte, value interface{}) bool {
        fmt.Printf("matched: key: %s, value %v\n", key, value)
        return true 
    })

Benchmark

The benchmark count all words that are part of the following extracts:

Lorem Ipsum

  1. Short: avg line size: 20, words: 13
  2. Long: avg line size: 711, words: 551
Benchmark_LoremBruteForceShort-8    	  500000	      3646 ns/op
Benchmark_LoremTrieShort-8          	  500000	      2376 ns/op
Benchmark_LoremBruteForceLong-8     	    1000	   1612877 ns/op
Benchmark_LoremTrieLong-8           	   10000	    119990 ns/op

Hamlet

  1. Short: avg line size: 20, words: 49
  2. Long: avg line size: 41, words: 105
Benchmark_HamletBruteForceShort-8   	   30000	     44306 ns/op
Benchmark_HamletTrieShort-8         	  100000	     18530 ns/op
Benchmark_HamletBruteForceLong-8    	   10000	    226836 ns/op
Benchmark_HamletTrieLong-8          	   50000	     39329 ns/op

Documentation

Index

Constants

View Source
const (
	NodeTypeValue = uint8(2)
	NodeTypeEdge  = uint8(4)
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Bit64Set

type Bit64Set uint64

Bit64Set represent 64bit set

func (Bit64Set) IsSet

func (s Bit64Set) IsSet(value uint8) bool

IsSet returns true if bit is set

func (Bit64Set) Put

func (s Bit64Set) Put(value uint8) Bit64Set

Put creates a new bit set for supplied value, value and not be grater than 64

type Bytes

type Bytes []byte

Bytes represents byte slice

func (Bytes) LastSharedIndex

func (b Bytes) LastSharedIndex(bs []byte) int

LastSharedIndex computes the last prefix shared indexed

func (Bytes) Len

func (a Bytes) Len() int

func (Bytes) Less

func (a Bytes) Less(i, j int) bool

func (Bytes) Swap

func (a Bytes) Swap(i, j int)

type Decoder

type Decoder interface {
	Decode(reader io.Reader) error
}

Decoder decoder

type Encoder

type Encoder interface {
	Encode(writer io.Writer) error
}

Encoder encoder

type KeyProvider

type KeyProvider interface {
	Key() interface{}
}

KeyProvider represents entity key provider

type Merger

type Merger func(previous, next interface{}) (merged interface{})

Merger

type Node

type Node struct {
	Type       uint8
	Prefix     []byte
	ValueIndex uint32
	Nodes
	// contains filtered or unexported fields
}

Node represents a node

func (*Node) Decode

func (n *Node) Decode(reader io.Reader) error

Decode decode node

func (*Node) Encode

func (n *Node) Encode(writer io.Writer) error

Encode encode node

type Nodes

type Nodes []*Node

Nodes represents node slice

func (Nodes) IndexOf

func (n Nodes) IndexOf(b byte) int

IndexOf returns index of expectMatched byte or -1

func (Nodes) Len

func (a Nodes) Len() int

func (Nodes) Less

func (a Nodes) Less(i, j int) bool

func (Nodes) Swap

func (a Nodes) Swap(i, j int)

type OnMatch

type OnMatch func(key []byte, value interface{}) bool

onMatch represents matching input handler, return value instruct trie to continue search

type Trie

type Trie interface {
	Put(key []byte, value interface{}) error

	Merge(key []byte, value interface{}, merger Merger) error

	Get(key []byte) (interface{}, bool)

	Has(key []byte) bool

	//Walk all tries value nodes.
	Walk(handler Visitor)

	//MatchPrefix matches input prefix, ie. input: dev.domain.com, would match with trie keys like: dev, dev.domain
	MatchPrefix(input []byte, handler OnMatch) bool

	//MatchAll matches input with any occurrences of tries keys.
	MatchAll(input []byte, handler OnMatch) bool

	UseType(vType reflect.Type)

	Decode(reader io.Reader) error

	Encode(writer io.Writer) error

	ValueCount() int
}

func New

func New() Trie

New create new prefix trie

type Visitor

type Visitor func(key []byte, value interface{}) bool

Visitor represents value node visitor handler

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL