gpt4 book ai didi

delphi - 检测数组中唯一值的数量

转载 作者:行者123 更新时间:2023-12-03 15:47:25 24 4
gpt4 key购买 nike

我正在寻找一种有效的方法来检测数组中唯一值的数量。

我目前的方法:

  1. 整数快速排序数组
  2. 然后运行循环来比较元素。

在代码中:

  yearHolder := '';
for I := 0 to High(yearArray) do
begin
currYear := yearArray[i];
if (yearHolder <> currYear) then
begin
yearHolder := currYear;
Inc(uniqueYearNumber);
end;
end;

最佳答案

以下是 THashedStringList 的示例:

hl := THashedStringList.Create; // in Inifiles
try
hl.Sorted := True;
hl.Duplicates := dupIgnore; // ignores attempts to add duplicates
for i := 0 to High(yearArray) do
hl.Add(yearArray[i]);
uniqueYearCount := hl.Count;
finally
hl.Free;
end;

关于delphi - 检测数组中唯一值的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/988730/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com