SkillAgentSearch skills...

Sture

🧱 Sture is a collection of data structures based on Go 1.18+ Generics (Stack, Queue, Linked List, etc.)

Install / Use

/learn @HotPotatoC/Sture
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Sture

A collection of data structures based on Go 1.18+ Generics.

Why this name?

I basically used an AI to generate the name sture 🗿. But... sture can be interpreted as "structure".

Installation

go get github.com/HotPotatoC/sture

Usage

Creating a priority queue using:

import "github.com/HotPotatoC/sture/queue"

func main() {
    pq := queue.NewPriorityQueue[string]()

    pq.Enqueue("Adam", 1)
    pq.Enqueue("John", 3)
    pq.Enqueue("Bob", 2)

    top := pq.Peek()
    fmt.Println(top) // John
}

See more examples here

Spec

Supported data structures at the moment:

Support

If this project is helpful to you, please consider supporting me by donating or just give this project a 🌟

<a href="https://www.buymeacoffee.com/hotpotato" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>

Related Skills

View on GitHub
GitHub Stars35
CategoryDevelopment
Updated5mo ago
Forks2

Languages

Go

Security Score

92/100

Audited on Oct 28, 2025

No findings