You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
简单判断时间复杂度
-
快速判断算法复杂度
- 确定问题规模n
- 循环减半过程 => log n (只要问题规模出现循环减半情况,则使用对数描述时间复杂度)
- k层关于n的循环 => nk (只要问题规模出现多层循环情况,则使用次幂描述时间复杂的)
-
复杂情况:根据算法执行过程判断