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
- Host: GitHub
- URL: https://github.com/kakashysen/swift-playgrounds
- Owner: kakashysen
- Created: 2017-11-20T20:04:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-28T02:52:58.000Z (over 7 years ago)
- Last Synced: 2025-01-17T03:15:19.475Z (6 months ago)
- Topics: algorithm, data-structures, generics, protocols, swift
- Language: Swift
- Homepage: http://blog.jappsku.co
- Size: 63.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)