List<string> allApps = new List<string>();
roster = MURLEngine.GetUserFriendDetails(token, userId);
var usersfriends = from elements in roster.RosterEntries
where elements[0] == 'm' && elements[1] >= '0' && elements[1] <= '9'
select elements;
foreach (string userid in usersfriends)
{
roster = MURLEngine.GetUserFriendDetails(token, userid);
var usersapps = from elements in roster.RosterEntries
where elements[0] != 'm'
select elements;
allApps.AddRange(usersapps);
allApps = allApps.Distinct().ToList();
}
int countapps = 0;
List<string> Appname = new List<string>();
countapps = appList.Count();
for (int y = 0; y < countapps; y++)
{
foreach (string li in allApps) //
{
bool istrueapp = appList.ElementAt(y).AppName.Equals(li);
if (istrueapp == true)
{
Appname.Add(appList.ElementAt(y).AppName);
}
}
}
在上面的代码中,我首先得到一个字符串列表,即 usersfriends,然后基于这些 id,我得到用户的应用程序列表,然后将所有用户的所有应用程序添加到另一个列表,即 allApps,因此整个过程很慢使用列表执行此操作大约需要 20 秒。也尝试使用 HashSet 和 SortedSet 但它更慢。
我的问题是我应该在这种情况下使用什么数据结构?
真的会帮助我