Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

Блог пользователя alright4869

Автор alright4869, история, 14 месяцев назад, По-английски

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

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

»
14 месяцев назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

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.