Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f367011

Browse files
committed
1.0.1
1 parent 6eaca36 commit f367011

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<p align="center">
33
<!-- <img src="https://i.loli.net/2018/01/05/5a4f153d36a21.png" alt="SortAlgorithm"> -->
44
<br/><a href="https://cocoapods.org/pods/SortAlgorithm">
5-
<img alt="Version" src="https://img.shields.io/badge/version-1.0.0-brightgreen.svg">
5+
<img alt="Version" src="https://img.shields.io/badge/version-1.0.1-brightgreen.svg">
66
<img alt="Author" src="https://img.shields.io/badge/author-Meniny-blue.svg">
77
<img alt="Build Passing" src="https://img.shields.io/badge/build-passing-brightgreen.svg">
88
<img alt="Swift" src="https://img.shields.io/badge/swift-4.0%2B-orange.svg">

‎Sample/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- SortAlgorithm (1.0.0)
2+
- SortAlgorithm (1.0.1)
33

44
DEPENDENCIES:
55
- SortAlgorithm (from `../`)
@@ -9,7 +9,7 @@ EXTERNAL SOURCES:
99
:path: ../
1010

1111
SPEC CHECKSUMS:
12-
SortAlgorithm: d14fe065a5dfbcd1b07f11c7bfc293533b66132e
12+
SortAlgorithm: 515a48bb6cdacd5dfa779feac208b1ca8b12e4f6
1313

1414
PODFILE CHECKSUM: 879c6730e28f493fd8b0c3a05c18fd17e42c43b6
1515

‎Sample/Pods/Local Podspecs/SortAlgorithm.podspec.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Sample/Pods/Manifest.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Sample/Pods/Target Support Files/SortAlgorithm/Info.plist

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎SortAlgorithm.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SortAlgorithm'
3-
s.version = "1.0.0"
3+
s.version = "1.0.1"
44
s.summary = "Swift array sort algorithm"
55
s.homepage = "https://github.com/Meniny/SortAlgorithm"
66
s.license = { :type => "MIT", :file => "LICENSE" }

‎SortAlgorithm/SortAlgorithm+CountingSort.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
//
6363

6464
public extension Array where Element == Int {
65-
// MAKR: - 计数排序
65+
// MARK: - 计数排序
6666
/// Counting Sort
6767
///
6868
/// - Returns: Sorted Array

‎SortAlgorithm/SortAlgorithm+HeapSort.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
//
6363

6464
public extension Array where Element: Comparable {
65-
// MAKR: - 堆排序
65+
// MARK: - 堆排序
6666
/// Heap Sort
6767
///
6868
/// - Parameter compare: Compare closure
@@ -82,7 +82,7 @@ public extension Array where Element: Comparable {
8282
}
8383
}
8484

85-
// MAKR: - HeapSort Helper
85+
// MARK: - HeapSort Helper
8686

8787
public protocol HeapType {
8888
associatedtype T

‎SortAlgorithm/SortAlgorithm.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public extension Array where Element: Comparable {
6868

6969
public extension Array where Element: Comparable {
7070

71-
// MAKR: - 冒泡排序
71+
// MARK: - 冒泡排序
7272
/// Bubble Sort
7373
///
7474
/// - Parameter compare: Compare closure
@@ -114,7 +114,7 @@ public extension Array where Element: Comparable {
114114
return items
115115
}
116116

117-
// MAKR: - 归并排序
117+
// MARK: - 归并排序
118118
/// Merge Sort
119119
///
120120
/// - Parameter compare: Compare closure
@@ -152,7 +152,7 @@ public extension Array where Element: Comparable {
152152
}
153153
}
154154

155-
// MAKR: - 快速排序
155+
// MARK: - 快速排序
156156
/// Quick Sort
157157
///
158158
/// - Parameter compare: Compare closure

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /