Worse is better. Is there an example?

前端 未结 24 914
予麋鹿
予麋鹿 2020-12-12 19:03

Is there a widely-used algorithm that has time complexity worse than that of another known algorithm but it is a better choice in all practical si

24条回答
  •  独厮守ぢ
    2020-12-12 19:40

    Monte carlo integration was already suggested but a more specific example is Monte Carlo pricing in finance is also a suggestion. Here the method is much easier to code and can do more things than some others BUT it is much slower than say, finite difference.

    its not practical to do 20dimensional finite difference algorithms, but a 20 dimensional pricing execution is easy to set up.

提交回复
热议问题