Help for this page

Select Code to Download


  1. or download this
    @$aref = @$aref[++$mid..$#$aref];
    ...
    @$aref = @$aref[0..--$mid];
    
  2. or download this
    sub binary_search {
        my ($aref, $find) = @_;
    ...
            binary_search([ @$aref[0..--$mid] ], $find);
        }
    }
    
  3. or download this
    sub binary_search {
        my ($aref, $find) = @_;
    ...
            , $find
        );
    }