https://github.com/magervalp/swiftheap
Testing Swift's performance with my heap priority queue.
https://github.com/magervalp/swiftheap
Last synced: about 1 year ago
JSON representation
Testing Swift's performance with my heap priority queue.
- Host: GitHub
- URL: https://github.com/magervalp/swiftheap
- Owner: MagerValp
- Created: 2014-06-21T19:22:53.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-22T07:49:51.000Z (almost 12 years ago)
- Last Synced: 2025-02-09T19:18:13.323Z (over 1 year ago)
- Language: Swift
- Size: 164 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Opt | Obj-C | Swift
:------ | -------:| -----:
-O0 | 0.836 | 5249
-O1 | 0.757 | 5182
-O2 | 0.756 | 5181
-O3 | 0.774 | 5197
-Os | 0.770 | 5021
-Ofast | 0.774 | 5089
Implementation | Time | Note
:---------------------- | -------:|:-----------------
Obj-C NSMutableArray | 0.009 |
Swift Array | 0.254 |
Swift Array | 54.981 | (Heap class subclassed from NSObject)