我希望从大型TListBox中删除重复的项目。为此,我使用了一种经典的简单方法。它有效,但需要19分钟。我读了很多,显然我应该使用TFileStream(?)。但我不知道如何。
我的经典方法是:
procedure NoDup(AListBox : TListBox);
var
i : integer;
begin
with AListBox do
for i := Items.Count - 1 downto 0 do
begin
if Items.IndexOf(Items[i]) < i then
Items.Delete(i);
Application.ProcessMessages;
end;
end;
如何提高速度?
答案 0 :(得分:9)
procedure NoDup(AListBox: TListBox);
var
lStringList: TStringList;
begin
lStringList := TStringList.Create;
try
lStringList.Duplicates := dupIgnore;
lStringList.Sorted := true;
lStringList.Assign(AListBox.Items);
AListBox.Items.Assign(lStringList);
finally
lStringList.free
end;
end;