使用TStringList,我调用List.Sort,但顺序错误

时间:2013-11-26 10:02:17

标签: delphi sorting pascal lazarus tstringlist

我正在和拉撒路一起工作。我有两个TStringList,在我对它们进行排序后,我将它们显示在屏幕上。但顺序错了。我无法确定它是怎么回事。

这是TStringList未排序时的屏幕截图:

enter image description here

在我调用FMover.AList.Sort和FMover.BList.Sort后,我将它们显示在屏幕上。这是列表排序后的屏幕截图。

enter image description here

你可以看到,项目' ... / kam14.in'出现在' ... / kam1.in'之前。排序程序无法正常工作。

这是程序中使用的一些程序。

procedure TAddProblemForm.actRegexLoadExecute(Sender: TObject);
var
  ARegExpr, BRegExpr: TRegExpr;
  s: String;
  AExpr, BExpr: String;
  Form: TRegexOptionForm;
begin
  Form := TRegexOptionForm.Create(Self);

  if Form.Execute('in', 'out') = mrOK then
  begin
    ARegExpr:=TRegExpr.Create;
    BRegExpr:=TRegExpr.Create;
    FMover.Clear;

    ARegExpr.Expression := Form.AExpr;
    BRegExpr.Expression := Form.BExpr;
    AddSearchResult(FMover.List, SearchDir, true);

    for s in FMover.List do
    begin
      if ARegExpr.Exec(s) then
        FMover.AList.Add(s)
      else if BRegExpr.Exec(s) then
        FMover.BList.Add(s);
    end;

    // *******************
    actInvalidate.Execute;
    FMover.AList.Sort;
    FMover.BList.Sort;
    actInvalidate.Execute;
    // *******************

    ARegExpr.Free;
    BRegExpr.Free;
  end;

  Form.Free;
end; 

另一个

  procedure TAddProblemForm.actInvalidateExecute(Sender: TObject);
  var 
    s: String;
  begin
    ListBox1.Clear;
    ListBox2.Clear;

    for s in FMover.AList do
      ListBox1.Items.Add(s);

    for s in FMover.BList do
      ListBox2.Items.Add(s);

    Application.ProcessMessages;
  end;   

0 个答案:

没有答案