Maximum Subarray in Pascal

Published on 22 July 2025 (Updated: 22 July 2025)

Welcome to the Maximum Subarray in Pascal page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

program MaximumArrayRotation;

{$mode objfpc}{$H+}

uses
   Classes,
   Generics.Collections,
   SysUtils;

procedure ShowUsage;
begin
   Writeln('Usage: Please provide a list of integers in the format: "1, 2, 3, 4, 5"');
   Halt(1);
end;

type
   TIntegerList = specialize TList<integer>;

function ParseIntegerList(const S: string): TIntegerList;
var
   Tokens: TStringArray;
   Token: string;
   Value: integer;
begin
   if S.Trim = '' then
      ShowUsage;

   Tokens := S.Split([',']);
   if Length(Tokens) = 0 then
      ShowUsage;

   Result := TIntegerList.Create;
   for Token in Tokens do
   begin
      if not TryStrToInt(Trim(Token), Value) then
      begin
         Result.Free;
         ShowUsage;
      end;
      Result.Add(Value);
   end;
end;

function MaximumSubarraySum(const Numbers: TIntegerList): integer;
var
   CurrentSum, MaxSum, Number, i: integer;
begin
   if Numbers.Count = 0 then
      Exit(0);

   CurrentSum := Numbers[0];
   MaxSum := Numbers[0];

   for i := 1 to Numbers.Count - 1 do
   begin
      Number := Numbers[i];
      if (CurrentSum + Number) > Number then
         CurrentSum := CurrentSum + Number
      else
         CurrentSum := Number;

      if CurrentSum > MaxSum then
         MaxSum := CurrentSum;
   end;

   Result := MaxSum;
end;

var
   InputList: TIntegerList;
begin
   if ParamCount <> 1 then
      ShowUsage;

   InputList := ParseIntegerList(ParamStr(1));
   try
      Writeln(MaximumSubarraySum(InputList));
   finally
      InputList.Free;
   end;
end.

Maximum Subarray in Pascal was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.