/** * Beispiel aus * * - Algorithmen und Datenstrukturen für Dummies * - von Andreas Gogol-Döring und Thomas Letschert * - Verlag Wiley-VCH; Oktober 2019 * - Kapitel 13, Dynamisches Programmieren * * @author A. Gogol-Döring, Th. Letschert */ import Foundation struct AuD_13_01_MaxSubSumBF { static func maxsubSumBF(_ a: [Int]) -> Int { (0 ..< a.count ).flatMap( { (l: Int) -> [Int] in (l ..< a.count).map({ (r: Int) -> Int in (l ... r).map ({ (i: Int) -> Int in a[i] }).reduce(0, +) }) }).max() ?? Int.min } static let a = [1, -4, 3, 18, 1, -8, 2, -1, 10, -5, -80, 20, 3, -2] static func run () { print(maxsubSumBF(a)) // 25 } }