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
- Host: GitHub
- URL: https://github.com/lourd/swift-data-structures
- Owner: lourd
- Created: 2020-08-29T19:04:37.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-09-01T03:40:35.000Z (over 5 years ago)
- Last Synced: 2025-01-29T12:47:02.684Z (about 1 year ago)
- Topics: algorithms, data-structures, swift
- Language: Swift
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```