Documentation
¶
Overview ¶
Package anagrammer implements an anagrammer based on a GADDAG data structure. I am basing this (and the movegen in the future) on my ujamaa program at github.com/domino14/ujamaa However, in order to simplify data structures and (hopefully) speed things up, we replace ARC* with just the index of the node that the ARC would point to in all the algorithms.
This is the RPC API for the anagrammer package.
Index ¶
Constants ¶
View Source
const ( ModeBuild = iota ModeAnagram = iota )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type AnagramService ¶ added in v0.0.2
type AnagramService struct{}
func (*AnagramService) Anagram ¶ added in v0.0.2
func (a *AnagramService) Anagram(r *http.Request, args *AnagramServiceArgs, reply *AnagramServiceReply) error
type AnagramServiceArgs ¶ added in v0.0.2
type AnagramServiceReply ¶ added in v0.0.2
type AnagramServiceReply struct {
Message string
}
Click to show internal directories.
Click to hide internal directories.