Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If you look at the code of the program is it possible to find the amount of memory it allocates. Is there a big O notation for memory. If so how would I go about using it?

share|improve this question
Do you have a specific language you are looking at? Are you looking to have a general runtime (big theta) or do you just want to compute it by hand before you ever run it? – Suroot May 14 '11 at 1:51
general run time – Aaron May 14 '11 at 2:16
If you are working in a manual memory management language (i.e. C/C++) then you can add these up unless you have really dynamic allocations such as with while loops or from user input (at which point you would need to do a max acceptable number). If you are in a dynamic memory language it will be a little harder but should be the same concepts. The only difference is that in Dynamic you aren't going to be able to tell when exactly the gc will clean things up; manual you can tell when it is dealloc'd and thus give you a better representation. Big O would be better for dynamic, Big theta in C – Suroot May 14 '11 at 2:33
I thought big O and big Theta had more to do with rate of growth(speed) then memory? – Aaron May 14 '11 at 3:36
It's a bounding metric; usually used for time but you could also use it to describe memory usage. Not sure if that is how it was originally intended but I would say that it's possible. Memory usage is O(n^2) where n would be the number of characters input from the keyboard. This notation might indicate a strdup style method. Might be out of the bounds of what big O does but I don't know of anything else that is used to describe memory usage bounding. – Suroot May 14 '11 at 4:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.