Giter Club home page Giter Club logo

binary-tree-go-impl's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

binary-tree-go-impl's Issues

Do you have ideas how to store any structure (e.g. interface) in node as value?

Do you have ideas how to store any structure (e.g. interface) in node as value?

e.g. I am looking for something like:

// To keep binary tree ordered, it is required for data to
// conform to Comparable interface, so data container node location
// can be identified
type Comparable interface {
	Less(dataOther Comparable) bool
}

// Struct for holding Data, that can be a pointer or just a data type
// Also holds left and right children pointers
type Node struct {
	// Reference to data contained in the node, should conform to Comparable interface
	Data  *Comparable // pointer to Comparable
	// Reference to the left child node in binary search tree
	Left  *Node
	// Reference to the right child node in binary search tree
	Right *Node
}

and usage example:

type TestBSTData struct {
	row []string
}

func NewTestBSTData(row []string) *TestBSTData {
	return &TestBSTData{row}
}

func (d TestBSTData) Less(other Comparable) bool {
	return d.row[0] < dOther.row[0]
}

Currently this approach (with code above) is impossible due to Go's inability to cast *TestBSTData to *Comparable

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.