You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
稳定:如果 a 原本在 b 前面,且 a=b,排序之后 a 仍然在 b 的前面
不稳定:如果 a 原本在 b 的前面,且 a=b,排序之后 a 可能会出现在 b 的后面
内排序:所有排序操作都在内存中完成
外排序:由于数据太大,因此把数据放在磁盘中,而排序通过磁盘和内存的数据传输才能进行
时间复杂度:一个算法执行所耗费的时间
空间复杂度:运行完一个程序所需内存的大小