-
Notifications
You must be signed in to change notification settings - Fork 446
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Adds "isSorted", "isSorted(by: )" and "allEqual" to Comparable Sequence #6
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the Swift Algorithms open source project | ||
// | ||
// Copyright (c) 2020 Apple Inc. and the Swift project authors | ||
// Licensed under Apache License v2.0 with Runtime Library Exception | ||
// | ||
// See https://swift.org/LICENSE.txt for license information | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
//===----------------------------------------------------------------------===// | ||
// isSorted() | ||
//===----------------------------------------------------------------------===// | ||
|
||
|
||
extension Sequence where Element: Comparable { | ||
public func isSorted() -> Bool { | ||
/// Returns Bool, indicating whether a sequence is sorted | ||
/// into non-descending order. | ||
/// | ||
/// - Complexity: O(*n*), where *n* is the length of the sequence. | ||
|
||
isSorted(by: <) | ||
} | ||
|
||
public func isSorted(by areInIncreasingOrder: (Element, Element) -> Bool) -> Bool { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Two notes on this version:
|
||
/// Returns Bool, indicating whether a sequence is sorted using | ||
/// the given predicate as the comparison between elements. | ||
/// | ||
/// - Complexity: O(*n*), where *n* is the length of the sequence. | ||
Comment on lines
+28
to
+31
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These docs go right above the function signature, not below 🙂 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, didn't notice that, thanks |
||
|
||
var prev: Element? | ||
for element in self { | ||
if let p = prev, !areInIncreasingOrder(p, element) { | ||
return false | ||
} | ||
prev = element | ||
} | ||
return true | ||
} | ||
|
||
public func allEqual() -> Bool { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This name is confusing to me, as it reads like it could be related to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree — let’s keep this addition focused on checking that a collection is sorted. |
||
/// Returns Bool, indicating whether all the | ||
/// elements in sequence are equal to each other. | ||
/// | ||
/// - Complexity: O(*n*), where *n* is the length of the sequence. | ||
|
||
isSorted(by: ==) | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the Swift Algorithms open source project | ||
// | ||
// Copyright (c) 2020 Apple Inc. and the Swift project authors | ||
// Licensed under Apache License v2.0 with Runtime Library Exception | ||
// | ||
// See https://swift.org/LICENSE.txt for license information | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
import XCTest | ||
import Algorithms | ||
|
||
final class IsSortedTests: XCTestCase { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be good to test an empty collection, to check sorted collections that includes repeats (e.g. |
||
|
||
func testIsSorted() { | ||
let a = 0...10 | ||
let b = (0...10).reversed() | ||
let c = Array(repeating: 42, count: 10) | ||
XCTAssertTrue(a.isSorted()) | ||
XCTAssertTrue(b.isSorted(by: >)) | ||
XCTAssertTrue(c.allEqual()) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To follow the Swift documentation style, these doc comments should start with “Returns a Boolean value indicating whether...”