Skip to content

Commit

Permalink
Add badges
Browse files Browse the repository at this point in the history
  • Loading branch information
ksw2000 committed Jul 14, 2024
1 parent 84a5a4f commit dfe9c53
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# High-Efficiency Fibonacci Heap

[![GoRef](https://img.shields.io/badge/Go-reference-blue?style=flat-square&color=blue)](https://godoc.org/github.com/ksw2000/go-fibheap)[![Go Report Card](https://goreportcard.com/badge/github.com/ksw2000/go-fibheap?style=flat-square)](https://goreportcard.com/report/github.com/ksw2000/go-fibheap)![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/ksw2000/go-fibheap?style=flat-square&color=green)![GitHub License](https://img.shields.io/github/license/ksw2000/go-fibheap?style=flat-square&color=yellow)


Package fibheap implements a Fibonacci heap. A Fibonacci heap is a data structure for priority queue operations, consisting of a collection of heap-ordered trees.

In our implementation, we do not additionally track the key value of each element. Therefore, users should be aware that they should not insert elements with the same key into the Fibonacci heap.
Expand Down

0 comments on commit dfe9c53

Please sign in to comment.