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

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.

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)