vote up 2 vote down star
2

What are some algorithms which we use daily that has O(1), O(n log n) and O(log n) complexities?

flag

Do you mean "algorithms" rather than "software applications"? – bobbymcr Oct 20 at 5:37
Make it a wiki, please. – Michael Petrotta Oct 20 at 5:40
2  
Why wiki? It's neither a poll nor subjective. She wants specific examples of the big-O properties. – paxdiablo Oct 20 at 5:46
1  
Why the downvote? As in "I'll vote it up to more than counter that" unless it's a good reason :-) – paxdiablo Oct 20 at 5:47
1  
To whoever downvoted without leaving a reason, I've upvoted to (more than) counter that. I think I'll be doing that a lot more in future for the drive-by downvoters. – paxdiablo Oct 20 at 5:50
show 4 more comments

9 Answers

vote up 10 vote down check

A simple example of O(1) might be return 23; -- whatever the input, this will return in a fixed, finite time.

A typical example of O(N log N) would be sorting an input array with a good algorithm (e.g. mergesort).

A typical example if O(log N) would be looking up a value in a sorted input array by bisection.

link|flag
vote up 1 vote down

O(1) - Deleting an element from a doubly linked list. e.g.

typedef struct _node {
    struct _node *next;
    struct _node *prev;
    int data;
} node;


void delete(node **head, node *to_delete)
{
    .
    .
    .
}
link|flag
vote up 0 vote down

You can add following algorithms to your list:

O(1) - Determining if a number is even or odd; Working with HashMap

O(logN) - computing x^N,

O(N Log N) - Longest increasing subsequence

link|flag
vote up 3 vote down

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!

link|flag
It takes a lot longer to cook a roast than a mini-roast :-) – paxdiablo Oct 20 at 6:00
but usually it takes the same time to cook two mini-roast vs one mini-roast, provided your oven is large enough to fit it in! – Chii Oct 20 at 7:27
Touche. Good point. – paxdiablo Oct 20 at 10:41
vote up 1 vote down

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) :-)

link|flag
2  
Yes, you can usually trade off time for space. I've actually done this for a tic-tac-toe game since there are only 3^9 states (less if you handle rotations intelligently). Chess, however, has a somewhat larger number of states :-) – paxdiablo Oct 20 at 5:58
vote up 1 vote down

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).

link|flag
vote up 2 vote down

Making coffee for yourself every morning is O(1). Reading newspaper is probably O(logn) in terms of time vs interest

link|flag
vote up 7 vote down

I can offer you some general algorithms...

  • O(1): Accessing an element in an array (i.e. int i = a[9])
  • O(n log n): quick or mergesort (On average)
  • O(log n): Binary search

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"

link|flag
It is not an homework problem, can expand your list of algorithms ? – Rachel Oct 20 at 5:44
it sure does sound like homework to me tho. – Chii Oct 20 at 5:53
Sure it does sound like homework but it is not an homework. – Rachel Oct 20 at 5:55
1  
Is. Is not. Is. Is not. What, are we back in the schoolyard? :-) – paxdiablo Oct 20 at 5:56
high school never ends! abstrusegoose.com/197 – Chii Oct 20 at 11:59
vote up 1 vote down

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.

link|flag
1  
That's not really true. If an algorithm has O(N) time complexity, that means that its runtime is bounded by k * N steps for some constant k. It is not really important whether "steps" are CPU cycles, assembly instructions, or (simple) C operations. That details is hidden by the constant k. – Igor ostrovsky Oct 20 at 5:44
Not to mention that in many practical cases the "c" of an O(logN) algorithm makes it worse than a simpler O(N) algorithm. – Zed Oct 20 at 5:47
Haha, yes, and by N we then mean the length of input on a Turing machine tape--which makes vertical form of division take exponential time to implement. :-) Each domain has its own requirements and its own precinct of abstracting. – Pavel Shved Oct 20 at 5:54

Your Answer

Get an OpenID
or

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