Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bradhowes/priorityqueue

Swift implementation of a priority queue.
https://github.com/bradhowes/priorityqueue

algorithm priority-queue swift5

Last synced: 5 days ago
JSON representation

Swift implementation of a priority queue.

Awesome Lists containing this project

README

        

[![](https://github.com/bradhowes/PriorityQueue/workflows/CI/badge.svg)]()
[![](https://img.shields.io/badge/SwiftPM-compatible-brightgreen.svg)](https://swift.org/package-manager/)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fbradhowes%2FPriorityQueue%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/bradhowes/PriorityQueue)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fbradhowes%2FPriorityQueue%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/bradhowes/PriorityQueue)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

# PriorityQueue

Generic Swift container type that maintains an ordering of its elements in a binary heap so that the first element in the collection is always the minimum (or maximum) value.