A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Selection Sort in Perl page! Here, you'll find the source code for this program as well as a description of how the program works.
#!/usr/bin/perl
#Selection Sort
$num_args = $#ARGV + 1;
# If no input was provided
if ($num_args == 0) {
print "Usage: please provide a list of at least two integers to sort in the format \"1, 2, 3, 4, 5\"";
}
# If invalid input was provided
else {
$input_string = $ARGV[0];
my @arr = split(',',$input_string);
$n = $#arr + 1;
if ($n <= 1) {
print "Usage: please provide a list of at least two integers to sort in the format \"1, 2, 3, 4, 5\"";
}
#Input is fine
else {
# Convert input sting to Integers
for ($i = 0;$i < $n;$i++) {
$arr[$i] = int($arr[$i])
} #end for
@selection_sorted_list = selection_sort (@arr);
# Print sorted numbers
for ($i = 0;$i < $n;$i = $i + 1) {
if ($i == 0) {
print "$selection_sorted_list[$i]";
} else {
print ", $selection_sorted_list[$i]";
}
}
}
}
sub selection_sort
{my @a = @_;
foreach my $i (0 .. $#a - 1)
{my $min = $i + 1;
$a[$_] < $a[$min] and $min = $_ foreach $min .. $#a;
$a[$i] > $a[$min] and @a[$i, $min] = @a[$min, $i];}
return @a;}
Selection Sort in Perl was written by:
If you see anything you'd like to change or update, please consider contributing.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.