代码评审中偶尔会发现一些通用的性能问题,在此作记录分享。
需求
我们有时候需要延迟删除 List
优化前
static void RemoveNull
for (int i = list.Count - 1; i >= 0; i--)
if (list[i] == null)
list.RemoveAt(i); // O(n)
}
由于 RemoveAt() 是 时间的操作,整个函数是 。但这个问题只需要 时间。
优化后
只要把第一个空元素之后的非空元素往前移,就能实现。
static void RemoveNull
// 找出第一个空元素 O(n)
int count = list.Count;
for (int i = 0; i < count; i++)
if (list[i] == null) {
// 记录当前位置
int newCount = i++;
// 对每个非空元素,复制至当前位置 O(n)
for (; i < count; i++)
if (list[i] != null)
list[newCount++] = list[i];
// 移除多余的元素 O(n)
list.RemoveRange(newCount, count - newCount);
break;
}
}
List
C++ 可用 std::remove, std::remove_if,因为支持内联不需考虑调用成本。
梦想家园汉化版 最新版v1.3.0
梦想家园汉化安卓版是一款以泡泡玛特为主题,玩法独特的模拟经营
服从我 (Obey Me!)安卓版v8.1.11
服从我(obey me)是一款让你陷入ikemen恶魔们深情
佩皮超级商店 免费版v1.13.1
佩皮超级商店(Pepi Super Stores)是一款经营
船舶墓地模拟器内置菜单最新版本 v142
船舶墓地模拟器内置菜单版是一款模拟经营类游戏,玩家们将在这里
铠甲勇士捕将变身器模拟器 最新版v1.5
铠甲勇士捕将变身器模拟器是一款有着丰富选择的腰带召唤器,该召