What are some algorithms which we use daily that has O(1), O(n log n) and O(log n) complexities?
|
2
|
|||||||||||||||||
|
|
|
A simple example of A typical example of A typical example if |
||
|
|
|
|
O(1) - Deleting an element from a doubly linked list. e.g.
|
|||
|
|
|
|
You can add following algorithms to your list:
|
||
|
|
|
|
O(1) - most cooking procedures are O(1), that is, it takes a constant amount of time even if there are more people to cook for (to a degree, because you could run out of space in your pot/pans and need to split up the cooking) O(logn) - finding something in your telephone book. Think binary search. O(n) - reading a book, where n is the number of pages. It is the minimum amount of time it takes to read a book. O(nlogn) - cant immediately think of something one might do everyday that is nlogn...unless you sort cards by doing merge or quick sort! |
||
|
|
O(1): finding the best next move in Chess (or Go for that matter). As the number of game states is finite it's only O(1) :-) |
||||
|
|
|
O (n log n) is famously the upper bound on how fast you can sort an arbitrary set (assuming a standard and not highly parallel computing model). |
||
|
|
|
|
Making coffee for yourself every morning is O(1). Reading newspaper is probably O(logn) in terms of time vs interest |
||
|
|
|
|
I can offer you some general algorithms...
These would be the gut responses as this sounds like homework/interview kind of question. If you are looking for something more concrete it's a little harder as the public in general would have no idea of the underlying implementation (Sparing open source of course) of a popular application, nor does the concept in general apply to an "application" |
||||||||||||
|
|
|
The complexity of software application is not measured and is not written in big-O notation. It is only useful to measure algorithm complexity and to compare algorithms in the same domain. Most likely, when we say O(n), we mean that it's "O(n) comparisons" or "O(n) arithmetic operations". That means, you can't compare any pair of algorithms or applications. |
||||||||
|
