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

https://github.com/lourd/swift-data-structures

Basic data structures and algorithms in Swift, made for teaching
https://github.com/lourd/swift-data-structures

algorithms data-structures swift

Last synced: about 1 year ago
JSON representation

Basic data structures and algorithms in Swift, made for teaching

Awesome Lists containing this project

README

          

# Swift Data Structures

Some basic data structures and algorithms problems in Swift. Useful for
teaching the basics. Solutions are on the `solutions` branch.

## Usage

```sh
swift test # runs the tests
swift test --filter testGetHeight # runs the tests matching the given pattern

swift Sources/DataStructures/Trees.swift # runs the given source file
```