The document discusses algorithms for solving the maximum subsequence sum problem in three sentences or less:
Algorithm 1 exhaustively tries all possibilities with O(N3) running time. Algorithm 2 improves on Algorithm 1 by removing a nested loop, resulting in O(N2) time. Algorithm 3 uses divide-and-conquer with a recursive O(N log N) approach by dividing the problem in half at each step.
Related topics: