Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/bradhowes/priorityqueue
- Owner: bradhowes
- License: mit
- Created: 2020-04-24T11:10:50.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T17:43:40.000Z (11 months ago)
- Last Synced: 2024-05-02T02:56:55.929Z (7 months ago)
- Topics: algorithm, priority-queue, swift5
- Language: Swift
- Size: 27.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
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.