Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: An informal introduction to O(N) notation

by jryan (Vicar)
on Jan 18, 2003 at 10:04 UTC ( [id://227946]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # O(n^2)
    for my $i (0..$#a-1) {
    ...
                if ($a[$_+1] < $a[$_]);
      }
    }
    
  2. or download this
    # O(n)
    my $truestatus;
    ...
            last
        }
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://227946]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (9)
As of 2024-03-28 10:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found