Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelesantos/refds-algorithm
This Swift Package Manager repository contains a collection of commonly used algorithms and data structures implemented in Swift. Whether you're a beginner learning algorithms or an experienced developer looking for ready-to-use implementations, this package aims to provide a comprehensive set of tools to enhance your projects.
https://github.com/rafaelesantos/refds-algorithm
data-structures-and-algorithms refds refds-algorithm refds-shared swift swift-package-manager
Last synced: 5 days ago
JSON representation
This Swift Package Manager repository contains a collection of commonly used algorithms and data structures implemented in Swift. Whether you're a beginner learning algorithms or an experienced developer looking for ready-to-use implementations, this package aims to provide a comprehensive set of tools to enhance your projects.
- Host: GitHub
- URL: https://github.com/rafaelesantos/refds-algorithm
- Owner: rafaelesantos
- License: mit
- Created: 2024-03-22T15:28:51.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T20:49:36.000Z (4 months ago)
- Last Synced: 2024-07-18T01:07:26.208Z (4 months ago)
- Topics: data-structures-and-algorithms, refds, refds-algorithm, refds-shared, swift, swift-package-manager
- Language: Swift
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Refds Algorithm
[![CI](https://github.com/rafaelesantos/refds-algorithm/actions/workflows/swift.yml/badge.svg?branch=main)](https://github.com/rafaelesantos/refds-algorithm/actions/workflows/swift.yml)
This Swift Package Manager repository contains a collection of commonly used algorithms and data structures implemented in Swift. Whether you're a beginner learning algorithms or an experienced developer looking for ready-to-use implementations, this package aims to provide a comprehensive set of tools to enhance your projects.
## Installation
Add this project to your `Package.swift` file.
```swift
import PackageDescriptionlet package = Package(
dependencies: [
.package(url: "https://github.com/rafaelesantos/refds-algorithm.git", branch: "main")
],
targets: [
.target(
name: "YourProject",
dependencies: [
.product(
name: "RefdsAlgorithm",
package: "refds-algorithm"),
]),
]
)
```