vote up 20 vote down star
10

A colleague of mine caused a long e-mail conversation by saying:

Of the probably 30+ people I’ve given a phone interview to, not a one (including people with Masters degrees in CS!!) has been able to tell me the big O of bubble sort- or any other sort for that matter, and maybe 2-3 seemed to have an clue what I was talking about.

Am I expecting too much of people with CS degrees? Maybe. But people with undergrad and Masters degrees in CS?

The last few people with CS degree’s couldn’t even describe how bubble sort worked.

The potential developer would be working on web based line of business apps, not scientific or game programming. Some people in the conversation feel that computational theory isn't so important when using modern framworks, i.e. no one should be writing a sort after CS 101.

Personally, I think that the kind of person who would care about the underlying theory is going to be a better programmer.

What do you think?

flag
17  
Label the question as community wiki – stack programmer May 15 at 20:41
5  
The title is a bit odd... you should care (or not) about their understanding asymptotic complexity of an algorithm (for which 'Big O' is a convenient notation), not about their understanding the notation itself. (Many programmers I know understand what it means that a certain algorithm "takes of the order of n^2 steps in the worst case", without necessarily being able to say "there exists a constant c and an integer N such that for all n > N, T(n) < c*n".) For instance, it seems that by "the big O of bubble sort" your colleague meant Ω(n^2) or theta(n^2), not O(n^2). – ShreevatsaR May 15 at 21:13
6  
FWIW, I've got a good CS degree from a good university, and I can't remember how bubble sort works. When was the last time you had to implement a sorting algorithm? You might care how the sorts you use work, but other people trust Google to remember that stuff for them. – Dominic Rodger May 15 at 21:37
1  
@Dominic Yeah, but if someone was asking you about big-o notation, and bubble sort, and complexity, you would at least be able to come up with something that proved that at some point in the past, maybe, you could give a half-coherent answer to that question... right? I think the question is asking about the people who hear "big-o, sorting, complexity, running time, asymptote" and glaze over, not the people who hear it and say "well, it's been a while, but I think it has something to do with how fast the running time of an algorithm grows in relation to the size of the input". – Adam Jaskiewicz May 15 at 22:03
show 2 more comments

36 Answers

1 2 next
vote up 42 vote down check

Here's my take on it.

Background Knowledge vs. Detail Knowledge

Knowing the Big-O of bubble sort, or any other sort, is a piece of "detail knowledge". Knowing what Big-O is would be "background knowledge".

Someone who is good at their chosen field will have a good supply of "background knowledge" to draw upon. Background knowledge allows for a fundamental understanding of a problem, and how best to approach it.

Detail knowledge is much less important for the problem solving process, and more important for the implementation of the solution. Obviously, the more detail knowledge you have, the faster you can work, but knowing details without background can cause someone to take an entirely incorrect approach. Knowing background without details is much preferable, as details are usually trivial to learn and implement.

How the Programmer fits the Job

I am ten years out of university. You can bet your bottom dollar that I have forgotten the big O of almost every algorithm I learned in CS 100. When was the last time I implemented a custom sort algorithm in ten years of web programming? Never. And unless you're implementing a bunch of custom sort algorithms specifically, you shouldn't put much weight on whether someone knows the "detail knowledge" behind it, as it's something they or you will probably never need to write.

On the other hand, could I tell you what Big O was? Most definitely. Could I research and come up with sorting alorgithms with a task-suitable Big O very quickly? Most definitely. Could I compare two web application process stacks and decide which one had the better Big O? Yes. Background knowledge beats out detail knowledge hands down here.

As long as a programmer (or anyone in any field) understands the fundamentals on a solid level (background knowledge), they will have the potential to be a good programmer. If they have acquired a lot of detail knowledge as well, through study or experience, then they can probably program faster, and maybe more accurately, as well. You can be a good programmer with no detail knowledge and lots of background knowledge, but the likelihood of being a good programmer with lots of detail knowledge and no background knowledge is much, much lower.

Tailor your Interview

Your interview should weigh all this accordingly to decide which candidate would be the best fit. For your particular case, I would make sure to hire someone who understood what Big-O was, as obviously they have more solid background knowledge to draw on. But dismissing them because they don't know the Big-O of bubble sort is silly, unless the job specifically deals with bubble sort in a serious capacity.

I could come up with a hundred similar detail-oriented questions to confound an interview candidate, and I guarantee that you or anyone wouldn't be able to answer all, or even most of them. When was the last time you wrote a database indexing algorithm from scratch, or even a B-tree, or took something to Backus-Naur normalized form (CS 230 in my day)? How about your own TCP/IP layer protocol (SEng 450 in my day)?

I can tell you what these things are and how to do them, but you tend to forget details after they become unimportant. However, I could find them and do them quickly if I had too. Make sure your interview weighs what background knowledge is important for the position as well as what detail knowledge is important.

link|flag
2  
Asking the Big Oh of bubble sort is a phone-screen shortcut to see if the person understand algorithmic complexity. It would take much longer to screen each candidate if you launch a lengthy discussion of complexity. Save that for the in-person interview. Since bubble sort is the canonical example of sorting complexity, it's likely that someone would either recall the complexity directly, or remember the algorithm and derive the complexity in mere moments. Your answer is right, but I'm not sure you should devote that much time to the phone screen. – dss539 May 15 at 21:27
6  
I respectfully, but completely, disagree. A much better question is "Describe what Big-O notation means.". To use the classic car analogy, it would be like interviewing a mechanic and asking "How does the transmission on a 1994 Jeep Wrangler work?" as opposed to "How does a standard transmission work?". All you need is a brief answer that indicates the person understands the overall concept. – zombat May 15 at 21:32
3  
A lot of this discussion is kind of funny to me when I think back on our HR person who was in charge, for some unknown and unknowable reason, for doing phone screenings for developers. He made sure, for example that they had programmed in "c pound" before. – Beska May 15 at 21:34
1  
You guys are nitpicking. It says in the original question that not only was he asking them the Big O, but also to things like describing how bubble sort works. That's a much bigger time waster than describing Big O in general, which shouldn't take more than a few seconds. You run the risk of losing quality candidates with poor questions, and that will cost you a lot more in the long run. – zombat May 15 at 21:55
2  
The first sentence says it all. Why in the world would ANYONE need to know, off the top of their head, the Big O of bubble sort? – Daniel Straight May 16 at 21:26
show 5 more comments
vote up 0 vote down

I've been programming successful commercial apps for 20 years, have interviewed many candidates for companies I've worked for, and I've never asked about Big-O. I'm embarrassed to say that I actually had to use Wikipedia to remind myself how Big-O notation worked, although I did remember the general concept from my first year CS course. I asked myself how I could have forgotten something so fundamental, and then realized that, aside from lower-level systems-type programming, there are only really two orders I care about when reviewing my average LOB programmer's code: O(too slow) and O(fast enough).

link|flag
vote up 0 vote down

Should they know what BigO is and how to determine it? Absolutely. Should BigO have to be remembered for bubblesort? I don't think so. It's not all that common that anyone will be writing their own sorts...most of the collections have pretty solid sorts and even if they have to they could google the bigO of most known sort schemes.

It's more important that they understand the concepts of algorithm analysis for their own algorithms...not remembering arbitrary facts about bubblesort. Seeing average case and worst case for your own computationally intensive code is more important.

link|flag
vote up 0 vote down

They should know what Big O means, but IMO, a good understanding of design patterns is more valuable.

link|flag
vote up 0 vote down

Yes, but just the basics:

  • O(n) to search for an item in an unsorted array
  • O(log n) to search for an item in a sorted collection (binary-search tree, SortedDictionary, etc)
  • Expected O(1) to access items in a hashtable
  • O(n log n) to sort collections
link|flag
vote up 1 vote down

You should care because it's not that hard. And if they've (allegedly) done a computer science major and don't know it, there's something wrong (with them).

link|flag
vote up 0 vote down

I dedicate this post for all of You who say it doesn't really matter for web frontend coders.

In the interview for a python coder:

  • how would You get the last element from the list?
  • that's easy! my_list.reverse() ; print my_list[0]
link|flag
show 2 more comments
vote up 1 vote down

If you phrased it as "big O", i can easily see not knowing what it is.

When i studied, it was called order, and written as O( n^2) but it was never ever referred to as "big Oh".

link|flag
show 1 more comment
vote up 2 vote down

JUst because somebody dosn't know/remember big-O or how a bubble sort works, dosn't mean they will not be a good developer. Most people don't know how a keyboard works, but is that as important as knowing how to use one? Seems like a petty reason to pass somebody up for consideration.

link|flag
show 1 more comment
vote up 0 vote down

When you want someone to design your home, the person with the best credentials typically is the person with foundational (and hopefully experiential) architectural knowledge.

When you need surgery, the person with the best credentials typically is the person with foundational (and very hopefully experiential) medical knowledge.

Granted, people can learn things from books and people can learn things from sites like Wikipedia. But when one gets down to the brass tacks, so to speak, the engineer or technician who has the deepest knowledge of their field is likely the most capable and quite possibly the one to bring the best results.

Software Engineering is a profession, and like all technical professions benefits from foundational knowledge of the field. If interviewees didn't remember the term Big-O, I would be irked (have they ever heard of it? why not?). If they couldn't analyze an algorithm and at least give a very reasonable assessment of the worst run-time (average preferable), the interview would be done early. I would no more trust the applicant to build complex code than I would trust an average teenager to design and wire my home electrical system.

To reiterate: having a sense of algorithmic complexity is foundational. One may be able to learn how to assess complexity by reading up on it "when one needs it", but the hard fact is that if one is writing code, one needs to be aware of the ramifications of one's choices - the good software engineer should have this knowledge (and this tool) from square 1.

link|flag
vote up 6 vote down

I don't see how someone memorizing bubble sort, insertion sort, or any other sort and their corresponding time complexity implies that they know much, or even anything, about computer science nor would make them an even-close-to-competent programmer.

Personally, I think that the kind of person who would care about the underlying theory is going to be a better programmer.

This is important. So how do you test to find out if someone cares? Why not give them a problem, two fairly simple algorithms that accomplish the same thing in different time complexities, and then ask them to describe the differences and why one might be better than the other. And, if you can, make it a problem applicable to your domain area. If they can tell you why one of the two algorithms is better, and demonstrate the ability to figure it out, then they are likely stronger in this regard.

For your domain, I would want to know if they could recognize time complexity related problems more than I would care about Big-O notation. Would they simplify a for loop that made calls to a database to a single SQL query if the opportunity presented itself?

link|flag
vote up 4 vote down

I would be concerned if they didn't recognize big-O notation as a way of speaking about algorithm complexity.

I would not be worried if they couldn't remember big-O of a bubble sort off the top of their head. I would be worried if they couldn't derive it.

Here's the reason even web programmers need to big-O: they need to recognize when something is no longer linear. They also need to understand that processes can be non-linear. Basically, they need to be able to see how long something is taking on different kinds of input, or how long something is taking over time, and have the intuition "oh, I bet this process is O(n2)" or "O(n4)" or "O(2n)", and not the much less helpful thought "gee, this is slow."

As an example of where web programmers get tied up in algorithmic complexity, allow me to point to regular expressions. It is very, very easy to create a regex that isn't O(n) in its input size. When that happens and you hit general performance problems on large input, you need to have the conceptual tools to recognize what's going on.

link|flag
show 1 more comment
vote up 0 vote down

One more semester to go and I will be graduating with a degree in Software Engineering: Computer Programming, and Big O was required in the Data Structures classes. Those classes were only required for programmers though, not for web programming or web development, as such I am not surprised that people coming out of school with a "CS" degree for web development have not learned about Big O notation.

link|flag
1  
I don't know that there IS a CS degree for "Web Development". maybe you could get such a thing at a community college; but I don't know of any university which grants a degree in Computer Science For Web Development. (Of course, I wouldn't go to a doctor with a M.D in Writing Prescriptions (not that I haven't gone to a few who acted like they had that degree).) – McWafflestix May 15 at 21:44
show 3 more comments
vote up 0 vote down

WHere are these guys getting their masters degrees?

Is this like the spam emails I get all the time, send us some cash and we'll send you a degree?

I would think that anyone taking a basic, undergraduate class in numerical methods would have learned this.

link|flag
show 1 more comment
vote up 3 vote down

I don't have a CS degree, but I've tried to keep up, and Big-O is a concept that I've come across constantly. If you don't know what this is and you don't have a CS degree then you either don't try to improve or all of your learning is of the form "learn widget Y with framework X" and you're not going to be very good at conceptualizing. If you don't know big-O and have a CS degree, ... well, I can't really figure out what you were doing, but it wouldn't fill me with confidence. It's chapter 1 in CLRS, it's a pretty intuitive concept.

I've been on lots of interviews, in my experience interviews that don't ask tough questions (and this is nowhere near a tough questions) mean a place where most of the coders are ... er... not so good. You don't want to be that place, and I can't imagine that you want people who aren't aware of the consequences of their decisions ("I'll just iterate through this array every time I want to find somehing...").

As a point of reference, in my (sadly unsuccessful) google interview, this kind of question would (rightly) barely rate for the phone screen.

link|flag
show 1 more comment
vote up 2 vote down

@Malfist: I agree. Give it a few years after you graduate and you will forget most of factual stuff, if you don't use it in practice. What will be left, is the basic remembrance what it was and from what opera, so that you know where to listen to it again whenever you need it. I learned and tried many kinds of algorithms as a student, but I do not even remember their names today.

Like we were taught in university: A professional is not the one who knows everything, but he who knows where to find the information he needs.

link|flag
vote up 5 vote down

First, ~10% of interviewees in a phone screening having any clue at all seems about right to me. In my experience, it's always the case that 80-90% of applicants for development jobs really shouldn't even be in the business. That's why you screen.

On the other hand, be wary of focusing on things like bubble sort. Yes, back when I learned CS it's the first sort we learned, and was the base comparison for other algorithms, but if you think about it there's no good reason for this, and it's absolutely possible for a very good algorithm course to gloss over bubble sort and start with selection sort or something. And I'd be very wary of asking directly "what's the big O of ...", that's the kind of question where someone could easily just draw a blank during an interview.

On the other hand, developers should be able talk intelligently about Big O notation and algorithm speed generally. But I think you'd be better off asking general questions about it, rather than asking about specific (largely archaic) algorithms.

link|flag
vote up 0 vote down

Well i don't have a degree in CS and i'm self taught on what little i do know but even i have started to try to learn bubble sort amoungst others, just for the sheer fact that if it is widespread like it is there must be a reason to know it.

link|flag
1  
Bubble sort is the "naive" implementation of sorting. It's basically the first algorithm you would invent when you decide you need to sort some data. – dss539 May 15 at 21:11
1  
And there's nothing wrong with bubble sort, in it's place (which, granted, is pretty limited) If you don't have access to a library, have to roll your own, and clarity and correctness are more important than speed because you're only sorting a maximum of, say 30 values, then bubblesort could be just fine. But in the great majority of cases, you'll want to know how to write (or access from a library) more efficent sorting algorithms. – Beska May 15 at 21:39
vote up -4 vote down

Big-O is hardly relevant to doing web development, so just forget about that. Instead, focus on your goal - you said:

Personally, I think that the kind of person who would care about the underlying theory is going to be a better programmer.

I think you're on the right track here, except that caring about Big-O indicates the candidate will be a good systems programmer while understanding, say, details about the HTTP stack or the internals of Ruby on Rails would indicate they'll be a good web developer.

Think of it this way, if I want to hire a mechanic to work on trucks and during the interview I start asking about the performance considerations of compact cars... would it be shocking if the guy didn't care? Probably he cares a whole lot about the equivalent topic in his area of expertise (and the kind of work you're potentially going to hire him for).

link|flag
7  
Algorithm performance is irrelevant to web development? WTF? – dss539 May 15 at 21:10
2  
If a web developer is doing any scripting or has any back-end code for their pages (e.g. ASP.NET code-behind) it is a great asset to have the capacity to analyze algorithmic complexity. Your response time (and your server load) depends on it - every ms counts. – Demi May 15 at 21:50
1  
Don't worry as you can see by the score on my respose they don't take kindly to people that don't have degrees. – Matthew Whited May 19 at 4:08
show 4 more comments
vote up 1 vote down

You fail to make a distinction between understanding Big Oh notation (or time complexity in general) and having memorized the time complexity of a bubble sort. I can give you a very thorough explanation of the former, and could not remember the latter to save my life. Of course, if you sat me down in front of (pseudo)code for a bubble sort I could tell you the time complexity of it.

link|flag
show 1 more comment
vote up 0 vote down

I wished that my study had involved the underlying technology. I had to do a minor to get some basic understanding of data structures and algorithms which I find a bit sad. In defence of my study they did explain the big O notation. The idea behind it should at least be known. I do agree that for writing "boring software" you do not need to know what a hashtable is. Higher lever languages and frameworks provide you with just about everything out of the box.

The general consensus seems to be, "You're not going to write a better implementation, so don't even bother with it."

link|flag
3  
But they do need to know what a hash table is. What if they decide to store CRUD data that needs fast access in a linked list instead of a hash table? – Unknown May 15 at 20:55
show 2 more comments
vote up 0 vote down

This is highly subjective and varies a lot.

For example, I work with 4 people, 3 with a Master Degree and the other with no degree at all. For those "simple" tasks, like CRUD applications, the guy with no formal education is the most productive.

The others prefer more difficult tasks and do not work with motivation if I handle them a CRUD application.

So, what I am saying is that there is no need to know certain subjects if your work is just "simple" tasks.

link|flag
3  
AKA code monkey. – Unknown May 15 at 20:55
show 5 more comments
vote up 6 vote down

I think it's more likely they don't remember bubble sort. Most learn that in the first year of school and it isn't important after that. It is more meaningful if they can't figure out the big O of an algoritm they know well.

link|flag
3  
+1 - knowing how a particular named algorithm works is a pretty arbitrary and silly thing to test for. OTOH any CS grad should be able to look at a given algorithm and analyze its runtime complexity, no matter how far out of school they are. – Sarah Mei May 15 at 20:59
3  
I agree that the concept is more important than the specific case. However, even if you forget the complexity of bubble sort, you should be able to mentally derive it in a few seconds. If you have forgotten the algorithm for bubble sort, you must have a pretty rusty memory. – dss539 May 15 at 21:06
2  
If they don't remember the algorithm, my assumption is that they would say "I don't remember exactly how that works, can you remind me", and that if the questioner is really interested in their comprehension of algorithmic complexity, they will inform them; if after being informed of the basic algorithm, they still have no clue... well, they prove that they really have no clue overall. – McWafflestix May 15 at 21:20
vote up -6 vote down

Rejecting people for something that they could learn on wikipedia in 5 minutes is rather pointless. But if it's important for you feel free. You may just be toss the best developer for you group over a simple topic they will never use, forgot the term of, of simplely never heard of becasue they have either never taken programming classes of been in a class that it was covered.

link|flag
4  
If they haven't heard of that notation then their CS education is quite poor. When they run in to an algorithmic complexity problem, they are not going to realize "oh I better go read up on big O notation". They have to know about it before they have the problem otherwise they won't even know what to search for. – dss539 May 15 at 20:59
3  
Goodness. God forbid he toss the best developer that's never heard of big-O notation or bubble sort. That guy must be a real catch. – mquander May 15 at 21:18
1  
Good to see all your guys feel proud of defending a sheet of paper. The best developers I know don't have degrees and some them only have a GED. – Matthew Whited May 16 at 12:10
1  
I don't care about pieces of paper. That's no justification for not understanding something pretty darn important. – Loren Pechtel May 19 at 2:13
show 5 more comments
vote up 1 vote down

He might not know big-O; in this case, he should know enough hot topics to cover this.

I mean, you have to know something! If someone's something approaches empty set, why would you want him in?

link|flag
vote up 1 vote down

might be worth asking, but I wouldn't make any decisions based on it. very rare that it matters unless you are hiring an algorithm coder.

link|flag
3  
Completely untrue. It doesn't matter until it REALLY REALLY matters, usually several years down the line, when the "little tiny loop at the heart of everything that nobody's going to care about" starts dragging down your app. I've seen this more times than I can count. – McWafflestix May 15 at 21:18
2  
I disagree. A programmer who doesn't understand this will probably cause more work than they solve (ie, do negative work)-- it will take a long time to unravel the mistakes they make because they don't understand the complexity of various algorithms. – mmr May 15 at 21:19
1  
"very rare" is subjective :( – dss539 May 15 at 21:20
1  
What kind of code are you writing that doesn't on some level require algorithms? – Demi May 15 at 21:52
show 1 more comment
vote up 2 vote down

A computer program is a sum of its parts. To create a program that is the best it can be, each part must be created the best way it can be.

Not knowing the nomenclature for perhaps the most fundamental and important aspect of superb programming is certainly a red flag. I don't know what types of education these people received, but perhaps they simply know the concept by another name (but I doubt it).

If it were up to me, I wouldn't hire a software engineer who can't tell me how efficient an algorithm is.

link|flag
vote up 13 vote down

The big issue is that behind the scenes in these tools and frameworks they're using, routines are running that have O(whatever) impacts. When you're writing a little app to work on a small dataset, it may not matter. When you work with a database with thousands, even millions of records, the design of the schema and data stored, and how you access it from these high-level tools will have at least the potential to invoke an O(n*n) algorithm, and understanding what that is, and why they are slow, will make it less likely to get into that problem. Also, if you do, they'll understand there's likely an algorithmic issue they need to revise things to avoid, instead of dithering around the edges trying to "optimize" by reducing 'k' while ignoring 'n' and not looking for a lower O() solution.

link|flag
show 2 more comments
vote up 5 vote down

Yes you should care, but you are asking the wrong questions.

Who really cares or knows about bubble/insertion/selection sort when there are libraries and better implementations like quicksort, mergesort, heapsort, radixsort?

They should know the complexity of at least 1 sort.

What they should really know is the complexity of containers which is used much more often than sorting algorithms. Knowing the difference between a linked list, array, and hash table should be required.

link|flag
vote up 47 vote down

I'd be concerned, but not because a web developer necessarily needs to know complexity theory to do their job.

My main concern would be that getting through a BS in CS without picking up at least the basics of Big O demonstrates that you weren't paying attention at all!

link|flag
2  
This is my take on it. I don't think I'd be looking for a CS degree for web dev, but if that's on the resume, you'd better be able to explain some basic CS concepts. – Adam Jaskiewicz May 15 at 21:00
2  
I would agree with the point that they must not have been listening at all. Either that, or they're just lying about their CS degree. – McWafflestix May 15 at 21:14
1  
It's real easy to be an unqualified lousy programmer without knowing that you are actually unqualified or lousy. If you're in that position, you might feel like not having a degree is just a "formality" and it doesn't hurt to lie about it since you can do that job just as well anyway. – mquander May 15 at 21:24
1  
No one has to be smart enough to do anything, unfortunately. :( They can quite easily waste every interviewer's time with their stupidity. – dss539 May 15 at 21:30
3  
Like DSS said, it costs nothing but time for a candidate who knows nothing to apply to 500 programming jobs, and you only need to get accepted by one dumb interviewer to make it pay off. – mquander May 15 at 21:37
show 6 more comments
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.