Відображайте чи зменшуйте з індексом у Swift


143

Чи є спосіб отримати індекс масиву в mapабо reduceв Swift? Я шукаю щось на кшталт each_with_indexРубі.

func lunhCheck(number : String) -> Bool
{
    var odd = true;
    return reverse(number).map { String($0).toInt()! }.reduce(0) {
        odd = !odd
        return $0 + (odd ? ($1 == 9 ? 9 : ($1 * 2) % 9) : $1)
    }  % 10 == 0
}

lunhCheck("49927398716")
lunhCheck("49927398717")

Я хотів би позбутися oddзмінної вище .

Відповіді:


314

Ви можете використовувати enumerateдля перетворення послідовності ( Array, Stringтощо) в послідовність кортежів з цілим лічильником і елементом, сполученим разом. Це є:

let numbers = [7, 8, 9, 10]
let indexAndNum: [String] = numbers.enumerate().map { (index, element) in
    return "\(index): \(element)"
}
print(indexAndNum)
// ["0: 7", "1: 8", "2: 9", "3: 10"]

Посилання на enumerateвизначення

Зауважте, що це не те саме, що отримання індексу колекції - enumerateповертає цілий лічильник. Це те саме, що і індекс для масиву, але для рядка чи словника не буде дуже корисним. Щоб отримати фактичний індекс разом з кожним елементом, ви можете використовувати zip:

let actualIndexAndNum: [String] = zip(numbers.indices, numbers).map { "\($0): \($1)" }
print(actualIndexAndNum)
// ["0: 7", "1: 8", "2: 9", "3: 10"]

Використовуючи перелічену послідовність з reduce, ви не зможете відокремити індекс і елемент кортежу, оскільки у підписі методу вже є накопичувальний / поточний кортеж. Натомість вам потрібно буде використовувати .0і .1другий параметр для вашого reduceзакриття:

let summedProducts = numbers.enumerate().reduce(0) { (accumulate, current) in
    return accumulate + current.0 * current.1
    //                          ^           ^
    //                        index      element
}
print(summedProducts)   // 56

Swift 3.0 і вище

Оскільки синтаксис Swift 3.0 зовсім інший.
Крім того, ви можете використовувати короткий синтаксис / вбудований файл для відображення масиву словника:

let numbers = [7, 8, 9, 10]
let array: [(Int, Int)] = numbers.enumerated().map { ($0, $1) }
//                                                     ^   ^
//                                                   index element

Це дає:

[(0, 7), (1, 8), (2, 9), (3, 10)]

1
Не хочу вкрадати задоволення від обробки, тому якщо вам це потрібно, я помістив модифікований чек Луна в суть замість відповіді: gist.github.com/natecook1000/1eb756d6b10297006137
Nate Cook

5
У швидкому 2.0 вам потрібно зробити:numbers.enumerate().map { (index, element) in ...
Роберт

@CharlieMartin: Ви можете використовувати .reduceпісля enumerate()або zip.
Нейт Кук

Але з індексом? Я отримую помилку, що для функції потрібні лише два параметри, а зменшення приймає первісний об’єкт (результат зменшення) як перший параметр, а поточне значення ітераціюється як другий. Наразі я просто використовую формат..in замість цього
Чарлі Мартін

У Swift 5 enumerateзаразenumerated
люстіг

10

Бо Swift 2.1я написав наступну функцію:

extension Array {

 public func mapWithIndex<T> (f: (Int, Element) -> T) -> [T] {     
     return zip((self.startIndex ..< self.endIndex), self).map(f)
   }
 }

А потім використовуйте його так:

    let numbers = [7, 8, 9, 10]
    let numbersWithIndex: [String] = numbers.mapWithIndex { (index, number) -> String in
        return "\(index): \(number)" 
    }
    print("Numbers: \(numbersWithIndex)")

8

За допомогою Swift 3, якщо у вас є об'єкт, який відповідає Sequenceпротоколу, і ви хочете пов'язати кожен елемент всередині нього зі своїм індексом, ви можете використовуватиenumerated() метод.

Наприклад:

let array = [1, 18, 32, 7]
let enumerateSequence = array.enumerated() // type: EnumerateSequence<[Int]>
let newArray = Array(enumerateSequence)
print(newArray) // prints: [(0, 1), (1, 18), (2, 32), (3, 7)]
let reverseRandomAccessCollection = [1, 18, 32, 7].reversed()
let enumerateSequence = reverseRandomAccessCollection.enumerated() // type: EnumerateSequence<ReverseRandomAccessCollection<[Int]>>
let newArray = Array(enumerateSequence)
print(newArray) // prints: [(0, 7), (1, 32), (2, 18), (3, 1)]
let reverseCollection = "8763".characters.reversed()
let enumerateSequence = reverseCollection.enumerated() // type: EnumerateSequence<ReverseCollection<String.CharacterView>>
let newArray = enumerateSequence.map { ($0.0 + 1, String($0.1) + "A") }
print(newArray) // prints: [(1, "3A"), (2, "6A"), (3, "7A"), (4, "8A")]

Тому в найпростішому випадку можна реалізувати алгоритм Луна на дитячому майданчику так:

let array = [8, 7, 6, 3]
let reversedArray = array.reversed()
let enumerateSequence = reversedArray.enumerated()

let luhnClosure = { (sum: Int, tuple: (index: Int, value: Int)) -> Int in
    let indexIsOdd = tuple.index % 2 == 1
    guard indexIsOdd else { return sum + tuple.value }
    let newValue = tuple.value == 9 ? 9 : tuple.value * 2 % 9
    return sum + newValue
}

let sum = enumerateSequence.reduce(0, luhnClosure)
let bool = sum % 10 == 0
print(bool) // prints: true

Якщо ви почнете з а String, ви можете реалізувати його так:

let characterView = "8763".characters
let mappedArray = characterView.flatMap { Int(String($0)) }
let reversedArray = mappedArray.reversed()
let enumerateSequence = reversedArray.enumerated()

let luhnClosure = { (sum: Int, tuple: (index: Int, value: Int)) -> Int in
    let indexIsOdd = tuple.index % 2 == 1
    guard indexIsOdd else { return sum + tuple.value }
    let newValue = tuple.value == 9 ? 9 : tuple.value * 2 % 9
    return sum + newValue
}

let sum = enumerateSequence.reduce(0, luhnClosure)
let bool = sum % 10 == 0
print(bool) // prints: true

Якщо вам потрібно повторити ці операції, ви можете знову змінити код на розширення:

extension String {

    func luhnCheck() -> Bool {
        let characterView = self.characters
        let mappedArray = characterView.flatMap { Int(String($0)) }
        let reversedArray = mappedArray.reversed()
        let enumerateSequence = reversedArray.enumerated()

        let luhnClosure = { (sum: Int, tuple: (index: Int, value: Int)) -> Int in
            let indexIsOdd = tuple.index % 2 == 1
            guard indexIsOdd else { return sum + tuple.value }
            let newValue = tuple.value == 9 ? 9 : tuple.value * 2 % 9
            return sum + newValue
        }

        let sum = enumerateSequence.reduce(0, luhnClosure)
        return sum % 10 == 0
    }

}

let string = "8763"
let luhnBool = string.luhnCheck()
print(luhnBool) // prints: true

Або, дуже стисло:

extension String {

    func luhnCheck() -> Bool {
        let sum = characters
            .flatMap { Int(String($0)) }
            .reversed()
            .enumerated()
            .reduce(0) {
                let indexIsOdd = $1.0 % 2 == 1
                guard indexIsOdd else { return $0 + $1.1 }
                return $0 + ($1.1 == 9 ? 9 : $1.1 * 2 % 9)
        }
        return sum % 10 == 0
    }

}

let string = "8763"
let luhnBool = string.luhnCheck()
print(luhnBool) // prints: true

2

Окрім прикладу Нейт-Кука map, ви можете також застосувати таку поведінку reduce.

let numbers = [1,2,3,4,5]
let indexedNumbers = reduce(numbers, [:]) { (memo, enumerated) -> [Int: Int] in
    return memo[enumerated.index] = enumerated.element
}
// [0: 1, 1: 2, 2: 3, 3: 4, 4: 5]

Зауважте, що EnumerateSequenceпередане у закриття як enumeratedне може бути розкладене вкладеним способом, тому члени кортежу повинні бути розкладені всередині закриття (тобто enumerated.index).


2

Це робоче розширення CollectionType для swift 2.1 за допомогою кидків і повторних кроків:

extension CollectionType {

    func map<T>(@noescape transform: (Self.Index, Self.Generator.Element) throws -> T) rethrows -> [T] {
        return try zip((self.startIndex ..< self.endIndex), self).map(transform)
    }

}

Я знаю, що це не те, про що ви питали, але вирішує ваше питання. Ви можете спробувати цей швидкий метод 2.0 Luhn, не продовжуючи нічого:

func luhn(string: String) -> Bool {
    var sum = 0
    for (idx, value) in string.characters.reverse().map( { Int(String($0))! }).enumerate() {
        sum += ((idx % 2 == 1) ? (value == 9 ? 9 : (value * 2) % 9) : value)
    }
    return sum > 0 ? sum % 10 == 0 : false
}
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.