Java icon indicating copy to clipboard operation
Java copied to clipboard

Add MaxAlternatingSum algorithm implementation

Open Jashnavi25 opened this issue 3 weeks ago • 2 comments

This PR adds a Java implementation of Max Alternating Sum to the devutils package.

Includes: ✔ Javadoc documentation ✔ Clean formatting and package declaration ✔ Sorting + arithmetic based optimal algorithm ✔ Follows TheAlgorithms conventions

Time Complexity: O(n log n) Space Complexity: O(n)

Jashnavi25 avatar Nov 20 '25 19:11 Jashnavi25