Re: big O?
From: Chris Smith (cdsmith_at_twu.net)
Date: 11/30/04
- Next message: Chris Smith: "Re: differences between singly/doubly recursive method"
- Previous message: Chris Smith: "Re: ADT's vs. interfaces"
- In reply to: Kenneth: "big O?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 29 Nov 2004 20:36:39 -0700
Kenneth <jagger7774@hotmail.com> wrote:
> how do you determine the 'big O' for a function?
>
If there were a simple proven way to do it, many computer science
students would jump for joy. There isn't, though. Generally speaking,
you take primitive operations (such as comparison or assignment) and
assign them some constant amount of time that they will take; then you
do some reasoning to find the smallest possible mathematical formula
that's always greater than the time required by the application. Remove
the constant factors, and voila! That's your big-O.
Of course the hard part is "do some reasoning to find [...]". There is
intelligence required in applying the concept of big-O.
-- www.designacourse.com The Easiest Way To Train Anyone... Anywhere. Chris Smith - Lead Software Developer/Technical Trainer MindIQ Corporation
- Next message: Chris Smith: "Re: differences between singly/doubly recursive method"
- Previous message: Chris Smith: "Re: ADT's vs. interfaces"
- In reply to: Kenneth: "big O?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]