Are there any cases where you would prefer a higher big-O time complexity algorithm over the lower one?

后端 未结 22 1549
说谎
说谎 2020-11-28 01:06

Are there are any cases where you would prefer O(log n) time complexity to O(1) time complexity? Or O(n) to O(log n)?

22条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-28 01:39

    In contexts where data security is a concern, a more complex algorithm may be preferable to a less complex algorithm if the more complex algorithm has better resistance to timing attacks.

提交回复
热议问题