Giter VIP home page Giter VIP logo

collection's Introduction

collection

CI GoDoc

A few generic data structures for Go. Tested with go1.18beta1.

Work in progress. Expect bugs, poor performance, API instability.

go get github.com/tomyl/collection

Examples

Deque

A double-ended queue based on a double-linked list.

    var q collection.Deque[int]
    q.PushFront(42)
    q.PushFront(17)
    value, ok := q.PopBack() // 42 true

Graph

A directed graph.

    var g collection.Graph[string, string, uint]
    g.SetEdge("a", "b", "ab", 1)
    g.SetEdge("a", "c", "ac", 2)
    g.SetEdge("b", "c", "bc", 3)
    g.SetEdge("b", "d", "bd", 4)
    nodes, edges := g.ShortestPath("a", "d") // [a b d] [ab bd]

Heap

A binary min heap. Trivial to use as a priority queue, just set the key to the negative priority.

    var h collection.Heap[int, string]
    h.Push(42, "foo")
    h.Push(17, "bar")
    key, value, ok := h.Pop()  // 17 "bar" true

Slice

    var s collection.Slice[int]
    s.PushBack(42)
    s.PushBack(17)
    value, ok := s.PopBack() // 17 true

collection's People

Contributors

tomyl avatar

Watchers

 avatar

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.