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

https://github.com/kakashysen/swift-playgrounds

Swift Playgrounds
https://github.com/kakashysen/swift-playgrounds

algorithm data-structures generics protocols swift

Last synced: 4 months ago
JSON representation

Swift Playgrounds

Awesome Lists containing this project

README

        

# Swift Algorithms

Implemetation of algorithms for Data Structures in Swift

## Data Structs
- [Stack](https://github.com/kakashysen/swift-algorithms-ds/blob/master/Pages/Stack.xcplaygroundpage/Contents.swift)
- [Queue](https://github.com/kakashysen/swift-algorithms-ds/blob/master/Pages/Queue.xcplaygroundpage/Contents.swift)
- Linked List
- Tree

# Swift Generics

Example of how to use `Generics`

## Playgrounds
- [Generics](https://github.com/kakashysen/swift-algorithms-ds/blob/master/Pages/Generics.xcplaygroundpage/Contents.swift)

# Swift Comparable

Example of how to use `Comparable` and `Equatable` protocols

## Playgrounds
- [Comparable & Equatable](https://github.com/kakashysen/swift-algorithms-ds/blob/master/Pages/Comparable.xcplaygroundpage/Contents.swift)