Please read the new rule regarding the restriction on the use of AI tools. ×

alright4869's blog

By alright4869, history, 14 months ago, In English

Can someone please mention a list of topics (like binary search, fft) that are also used in real life extensively. I would love to learn more about such algorithms in the future. Thank you

  • Vote: I like it
  • +1
  • Vote: I do not like it

»
14 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

Must depend a lot on what kind of work you do. If you just do frontend web development chances are you don't even need to know Binary Search. On the other hand pretty much every algorithm has at least some context in which it can be used.

The most universally useful concept you can get from Competitive Programming is probably the notion of complexity. It should prevent you from writing really inefficient code.

Hopefully you will also gain the desire to profile and optimize the performance of your code, so you don't end up like Rockstar.