Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/max-hoffman/heap

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/max-hoffman/heap

  • v0.0.0-20231130204049-642702c5b8cd
  • Source
  • Go
  • Socket score

Version published
Created
Source

Golang Default Heaps

Toy repo with implicit support for default slice types. The main drawback is having to use slice pointers.

Currently supported:

  • *[]int
  • *[]string

Helper method IsSupported will return false if this library cannot heap sort the type. A bit of effort codegen'ing default slice harnesses would make it easy to support an arbitrary list of types.

Implementation falls back to standard library for types that implement heap.Interface (standard library heap, not this one). Heap helper methods will panic if the type passed !IsSupported and does not implement heap.Interface.

Usage:

	h := []int{5, 7, 1, 3}
	Init(&h)
	Push(&h, 3)
	min := Pop(&h)
	fmt.Printf("minimum: %d\n", Pop(&h))
	for len(h) > 0 {
		fmt.Printf("%d ", Pop(&h))
	}
	// Output:
	// minimum: 1
	// 1 2 3 5

FAQs

Package last updated on 30 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc