Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CosmicMind/Algorithm
Algorithm is a library of tools that is used to create intelligent applications.
https://github.com/CosmicMind/Algorithm
algorithm algorithms conditional-probability cosmicmind data-structure data-structures data-structures-algorithms dictionary doublylinkedlist multidictionary multiset probabilistic-programming probability redblacktree redblacktrees set sorted-sets stack swift swift-3
Last synced: 3 months ago
JSON representation
Algorithm is a library of tools that is used to create intelligent applications.
- Host: GitHub
- URL: https://github.com/CosmicMind/Algorithm
- Owner: CosmicMind
- License: mit
- Created: 2016-01-24T18:42:08.000Z (almost 9 years ago)
- Default Branch: development
- Last Pushed: 2020-01-17T08:46:20.000Z (almost 5 years ago)
- Last Synced: 2024-07-20T20:03:48.122Z (4 months ago)
- Topics: algorithm, algorithms, conditional-probability, cosmicmind, data-structure, data-structures, data-structures-algorithms, dictionary, doublylinkedlist, multidictionary, multiset, probabilistic-programming, probability, redblacktree, redblacktrees, set, sorted-sets, stack, swift, swift-3
- Language: Swift
- Homepage: http://cosmicmind.com
- Size: 265 KB
- Stars: 828
- Watchers: 30
- Forks: 84
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-ios - Algorithm - Algorithm is a collection of data structures that are empowered by a probability toolset. (Data Structures / Algorithms / Getting Started)
- awesome-swift - Algorithm - A toolset for writing algorithms and probability models. (Libs / Algorithm)
- awesome-swift - Algorithm - A toolset for writing algorithms and probability models. (Libs / Algorithm)
- fucking-awesome-swift - Algorithm - A toolset for writing algorithms and probability models. (Libs / Algorithm)
- awesome-ios-star - Algorithm - Algorithm is a collection of data structures that are empowered by a probability toolset. (Data Structures / Algorithms / Getting Started)
- awesome-swift-cn - Algorithm - A toolset for writing algorithms and probability models in Swift. (Libs / Data Management)
- fucking-awesome-ios - Algorithm - Algorithm is a collection of data structures that are empowered by a probability toolset. (Data Structures / Algorithms / Getting Started)
- fucking-awesome-ios - Algorithm - Algorithm is a collection of data structures that are empowered by a probability toolset. (Data Structures / Algorithms / Getting Started)
- awesome-swift - Algorithm - Algorithm is a library of tools that is used to create intelligent applications. ` 📝 2 years ago ` (Algorithm [🔝](#readme))
README
![Algorithm](http://www.cosmicmind.com/algorithm/github/algorithm-logo.png)
## Welcome to Algorithm
Algorithm is a library of tools that is used to create intelligent applications.
## Features
- [x] Probability Tools
- [x] Expected Value
- [x] Programmable Probability Blocks
- [x] Array Extensions
- [x] Set Extensions## Data Structures
- [x] DoublyLinkedList
- [x] Stack
- [x] Queue
- [x] Deque
- [x] RedBlackTree
- [x] SortedSet
- [x] SortedMultiSet
- [x] SortedDictionary
- [x] SortedMultiDictionary## Requirements
* iOS 8.0+ / Mac OS X 10.9+
* Xcode 8.0+## Communication
- If you **need help**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/cosmicmind). (Tag 'cosmicmind')
- If you'd like to **ask a general question**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/cosmicmind).
- If you **found a bug**, _and can provide steps to reliably reproduce it_, open an issue.
- If you **have a feature request**, open an issue.
- If you **want to contribute**, submit a pull request.## Installation
> **Embedded frameworks require a minimum deployment target of iOS 8.**
> - [Download Algorithm](https://github.com/CosmicMind/Algorithm/archive/master.zip)## CocoaPods
[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command:
```bash
$ gem install cocoapods
```To integrate Algorithm's core features into your Xcode project using CocoaPods, specify it in your `Podfile`:
```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!pod 'Algorithm', '~> 3.1.0'
```Then, run the following command:
```bash
$ pod install
```## Carthage
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
```bash
$ brew update
$ brew install carthage
```
To integrate Algorithm into your Xcode project using Carthage, specify it in your Cartfile:```bash
github "CosmicMind/Algorithm"
```Run `carthage update` to build the framework and drag the built `Algorithm.framework` into your Xcode project.
## Changelog
Algorithm is a growing project and will encounter changes throughout its development. It is recommended that the [Changelog](https://github.com/CosmicMind/Algorithm/wiki/Changelog) be reviewed prior to updating versions.
# Samples
The following are samples to see how Algorithm may be used within your applications.
* Visit the [Samples](https://github.com/CosmicMind/Samples) repo to see example projects using Algorithm.
- [Samples](#samples)
- [Probability](#probability)
- [Basic Probability](#basic-probability)
- [Conditional Probability](#conditional-probability)
- [Expected Value](#expected-value)
- [DoublyLinkedList](#doublylinkedlist)
- [Stack](#stack)
- [Queue](#queue)
- [Deque](#deque)
- [RedBlackTree](#redblacktree)
- [SortedSet](#sortedset)
- [SortedMultiSet](#sortedmultiset)
- [SortedDictionary](#sorteddictionary)
- [SortedMultiDictionary](#sortedmultidictionary)
- [License](#license)Each data structure within Algorithm is equipped with probability tools.
#### Basic Probability
For example, determining the probability of rolling a 3 using a die of 6 numbers.
```swift
let die = [Int](arrayLiteral: 1, 2, 3, 4, 5, 6)if 0.1 < die.probability(of: 3)
// Do something ...
}
```#### Conditional Probability
For conditional probabilities that require a more complex calculation, use block statements.
```swift
let die = [Int](arrayLiteral: 1, 2, 3, 4, 5, 6)let pOfX = die.probability { (number) in
return 5 < number || 0 == number % 3
}if 0.33 < pOfX {
// Do something ...
}
```The expected value of rolling a 3 or 6 with 100 trials using a die of 6 numbers.
```swift
let die = [Int](arrayLiteral: 1, 2, 3, 4, 5, 6)if 20 < die.expectedValue(trials: 100, for: 3, 6) {
// Do something ...
}
```The DoublyLinkedList data structure is excellent for large growing collections of data. Below is an example of its usage.
```swift
var listA = DoublyLinkedList()
listA.insert(atFront: 3)
listA.insert(atFront: 2)
listA.insert(atFront: 1)var listB = DoublyLinkedList()
listB.insert(atBack: 4)
listB.insert(atBack: 5)
listB.insert(atBack: 6)var listC = listA + listB
listC.cursorToFront()
var value = listC.cursor
while nil != value {
// Do something ...
value = listC.next()
}
```The Stack data structure is a container of objects that are inserted and removed according to the last-in-first-out (LIFO) principle. Below is an example of its usage.
```swift
var stack = Stack()stack.push(1)
stack.push(2)
stack.push(3)while !stack.isEmpty {
let value = stack.pop()
// Do something ...
}
```The Queue data structure is a container of objects that are inserted and removed according to the first-in-first-out (FIFO) principle. Below is an example of its usage.
```swift
var queue = Queue()queue.enqueue(1)
queue.enqueue(2)
queue.enqueue(3)while !queue.isEmpty {
let value = queue.dequeue()// Do something ...
}
```The Deque data structure is a container of objects that are inserted and removed according to the first-in-first-out (FIFO) and last-in-first-out (LIFO) principle. Essentially, a Deque is a Stack and Queue combined. Below are examples of its usage.
```swift
var dequeA = Deque()
dequeA.insert(atBack: 1)
dequeA.insert(atBack: 2)
dequeA.insert(atBack: 3)while !dequeA.isEmpty {
let value = dequeA.removeAtFront()
// Do something ...
}var dequeB = Deque()
dequeB.insert(atBack: 4)
dequeB.insert(atBack: 5)
dequeB.insert(atBack: 6)while !dequeB.isEmpty {
let value = dequeB.removeAtFront()
// Do something ...
}
```A RedBlackTree is a Balanced Binary Search Tree that maintains insert, remove, update, and search operations in a complexity of O(logn). The following implementation of a RedBlackTree also includes an order-statistic, which allows the data structure to be accessed using subscripts like an array or dictionary. RedBlackTrees may store unique keys or non-unique key values. Below is an example of its usage.
```swift
var ages = RedBlackTree(uniqueKeys: true)ages.insert(value: 16, for: "Sarah")
ages.insert(value: 12, for: "Peter")
ages.insert(value: 23, for: "Alex")let node = ages[1]
if "Peter" == node.key {
// Do something ...
}
```SortedSets are a powerful data structure for algorithm and analysis design. Elements within a SortedSet are unique and insert, remove, and search operations have a complexity of O(logn). The following implementation of a SortedSet also includes an order-statistic, which allows the data structure to be accessed using an index subscript like an array. Below are examples of its usage.
```swift
let setA = SortedSet(elements: 1, 2, 3)
let setB = SortedSet(elements: 4, 3, 6)
let setC = SortedSet(elements: 7, 1, 2)
let setD = SortedSet(elements: 1, 7)
let setE = SortedSet(elements: 1, 6, 7)// Union.
setA + setB
setA.union(setB)// Intersection.
setC.intersection(setD)// Subset.
setD < setC
setD.isSubset(of: setC)// Superset.
setD > setC
setD.isSuperset(of: setC)// Contains.
setE.contains(setA.first!)// Probability.
setE.probability(of: setA.first!, setA.last!)
```A SortedMultiSet is identical to a SortedSet, except that a SortedMultiSet allows non-unique elements. Look at [SortedSet](#sortedset) for examples of its usage.
A SortedDictionary is a powerful data structure that maintains a sorted set of keys with value pairs. Keys within a SortedDictionary are unique and insert, remove, update, and search operations have a complexity of O(logn).
A SortedMultiDictionary is identical to a SortedDictionary, except that a SortedMultiDictionary allows non-unique keys. Below is an example of its usage.
```swift
struct Student {
var name: String
}let sarah = Student(name: "Sarah")
let peter = Student(name: "Peter")
let alex = Student(name: "Alex")var students = SortedMultiDictionary()
students.insert(value: sarah, for: sarah.name)
students.insert(value: peter, for: peter.name)
students.insert(value: alex, for: alex.name)for student in students {
// Do something ...
}
```## License
The MIT License (MIT)
Copyright (C) 2019, CosmicMind, Inc. .
All rights reserved.Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.