What Big-O notation questions have you been asked? Did you find them to be good questions? Did the interviewer actually understand the concept?
closed as not constructive by Flexo♦, Kev♦ Jul 15 '12 at 13:21
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
What are the expected runtimes of some common data structures? IE. HashTable, BinarySearchTree, Array, etc. Keep in mind, the answers can and should vary depending on multiple conditions like the type of data you're storing, worst-case, average-case, the list goes on...but they should generally know which tool to use for the job. |
|||
|
|
|
Usually on some form of collection class,e.g. priority queue, stack, binary tree, the usual insertion, find, and deletion operations are what I remember getting asked. I didn't find them to be good questions but then I'm not sure what the point was to some extent. The interviewed understood the concept, yes. |
|||
|
|
|
I have not been asked Big O question directly. The interviewer, gives some problem to solve. When you solve it, you are asked (explicitly) to find its Time complexity and sometimes space complexity. So say if your solution is O(n2), the interviewer will ask you to provide a better solution, and then analyze it for Time and space. So the Big O questions are mostly indirect, requiring that you be able to analyze your solution in terms of Big O. |
|||
|
|