Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Big-O Notation - What is it good for?

by Limbic~Region (Chancellor)
on Sep 15, 2006 at 14:07 UTC ( [id://573138]=perltutorial: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    for my $i (0 .. $#array) {
        for my $j (0 .. $#array) {
    ...
            # Compare $i, $j
        }
    }
    
  2. or download this
    for my $i (0 .. $#array - 1) {
        for my $j ($i + 1 .. $#array) {
            # Compare $i, $j
        }
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-19 13:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found