X Tutup
Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 339 Bytes

File metadata and controls

9 lines (7 loc) · 339 Bytes

python_algorithms

Some algorithms implemented by python

概念说明

  • 时间复杂度:一个算法执行所耗费的时间
  • 空间复杂度:运行完一个程序所需内存的大小
  • 稳定:如果a=b,a在b的前面,排序后a仍然在b的前面
  • 不稳定:如果a=b,a在b的前面,排序后可能会交换位置
X Tutup