Zitat von
3_of_8:
Delphi-Quellcode:
function FindCombination(a: TIntegerDynArray; maxValue: Integer): Integer;
var I, J, value, max: Integer;
begin
I:=0;
max:=0;
while I<length(a) do
begin
if a[I]=maxValue then
begin
result:=a[I];
exit;
end else if a[I]<maxValue then
begin
value:=a[I];
for J:=Succ(I) to high(a) do
if a[J]<maxValue then inc(value, a[J]);
if value>max then max:=value;
end;
inc(I);
end;
result:=max;
end;
So wird das nicht funktionieren. Ich überleg mir auch mal eben was.