views:

127

answers:

5

Possible Duplicate:
Plain English explanation of Big O

I can't find any sufficient help for learn or understand about O-notation, and how learn about time or space complexity. So please suggest me , where can I start this. Its really need to me, for now these time.So please give me solution quick. Thanks a lot in advance.

+4  A: 

Best explanation of Big O I've ever seen:

http://stackoverflow.com/questions/487258

Ian Henry
thank you very muchthis link help me so muchand how to contact with you
R.K.Rahu
A: 

Uh, Wikipedia? Although Big O notation (and algorithm analysis in general) is a pretty broad and substantial topic, so I doubt you're going to find a "quick solution" to learning it.

mipadi
+7  A: 

Algorithms

Daniel Moura
I posted the same thing but without the nice pic. I will upvote for great pic.What a great book.
Maestro1024
thanks but I v got this just 2 hours ago. I m not sure to go with this because its huge, and I want to go with basic.I m not sure If you have gone this through then what should I do, go with this or at first take help of any basic note or book. If I should do with basic then which?
R.K.Rahu
hey Daniel if now online now can u response?
R.K.Rahu
Go through it. Don't be daunted by the size, it is big because it is thorough, not because it is difficult. Also see the associated lectures http://www.catonmat.net/blog/mit-introduction-to-algorithms-part-one (this is the link I have bookmarked. The lectures are at MIT, but the blogs commentary is also very good)
deinst
thankshow to contact with youI want more help from you, If you wish
R.K.Rahu
A: 

Introduction to Algorithms

Also http://en.wikipedia.org/wiki/Big_O_notation

Also, there are some great lectures out there on youtube and itunesU

Maestro1024
A: 

"Concrete Mathematics: A Foundation for Computer Science (2nd Edition)" would be another book recommendation I'd toss out there. Big O isn't that difficult but it can take a while to get the hang of what it is trying to convey.

JB King