this post was submitted on 12 May 2024
856 points (99.4% liked)

Programmer Humor

31250 readers
2655 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] jaybone@lemmy.world 2 points 1 month ago (2 children)

I think you need both. Does your logic cover complexity analysis, big O?

[–] TopRamenBinLaden@sh.itjust.works 3 points 1 month ago* (last edited 1 month ago) (2 children)

I did well in data structures and algorithms in uni, but I have never had those topics come up in my 4 years of being a software developer. I'm in web development, FWIW.

So you don't really have to know that stuff, depending on what kind of software engineering that you get into.

[–] kaffiene@lemmy.world 4 points 1 month ago

I've done Telephony, Games and I'm currently working in a high performance context. 99% of the time, you don't need to be thinking about Big O

[–] Buddahriffic@lemmy.world 3 points 1 month ago

I think part of it is going through all those sorting methods to show quick sort is the best so that a) students who run into new sorts are better equipped to determine it most likely isn't better than quick sort and b) to show the process used to determine quick sort is better than the rest in case you have some other algorithm options you want to pick the best of.

And yeah, depending on what you do, some tasks never involve any of that, or when they do, they get offloaded onto a library or something that gives the solution to that step directly.

But, for example, if you have a collection, the question of array vs linked list vs tree is still relevant, even if you're just choosing a provided construct that is built on top of one of those. Each has their strengths and weaknesses depending on how the data is added, removed, and accessed.

And with how slow things are these days despite how much better the hardware is, I think there's a lot of successful software engineers and programmers who should be using that stuff from school more than they are.

[–] kaffiene@lemmy.world 2 points 1 month ago (1 children)

There's a lot of software engineering that doesn't require understanding Big O

[–] Buddahriffic@lemmy.world 6 points 1 month ago (2 children)

Also big O analysis IMO should just be the starting point of maximizing efficiency. Those coefficients that just get dropped can have a huge impact. For example, any algorithm written in JavaScript or visual basic will be of the same order as that same algorithm written in C/C++ or rust, but will likely perform much slower. And the exact manner of implementation could even result in the C version being slower than the VB one.

And on the other hand, I wouldn't call a lot of big O analysis very advanced math. You might get a tighter bound with advanced math on some algorithms, but you can get a rough estimate just by multiplying and adding loops together. The harder question would be something like "does this early exit optimization result in an O(x³) algorithm becoming an O(log(x)*x²)?"

[–] Zangoose@lemmy.one 3 points 1 month ago

Another big thing that doesn't get covered by big O analysis is the potential for parallelization and multi threading, because the difference created by multi threading only amounts to one of those dropped coefficients.

And yet, especially for the workloads being run on a server with 32-128 cores, being able to run algorithms in parallel will make a huge difference to performance.

[–] kaffiene@lemmy.world 2 points 1 month ago

I think the tldr; of what you said is that even when you have a theoretical handle on the growth function, you still need to actually benchmark anyway