Skip to content
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

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions Sources/Algorithms/isSorted.swift
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
Copy link
Member

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...”

/// 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 {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two notes on this version:

  1. Since this method takes a closure for comparisons, it doesn’t need to be in the constrained extension
  2. For this kind of method, we mark the closure as throwing and the method itself as rethrows

/// 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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These docs go right above the function signature, not below 🙂

Copy link
Author

Choose a reason for hiding this comment

The 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 {
Copy link
Contributor

Choose a reason for hiding this comment

The 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 elementsEqual. It also seems like it's straightforward enough that we don't necessarily need to provide it in a library if the building blocks are there.

Copy link
Member

Choose a reason for hiding this comment

The 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: ==)
}
}
25 changes: 25 additions & 0 deletions Tests/SwiftAlgorithmsTests/IsSortedTests.swift
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 {
Copy link
Member

Choose a reason for hiding this comment

The 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. [1, 1, 1, 2, 3]), and also to verify that isSorted returns false for unsorted collections.


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())
}
}