Thursday 9 January 2014

sort function in Perl

sort function in Perl



1.sort - perldoc.perl.org

Description:sort SUBNAME LIST. sort BLOCK LIST; sort LIST. In list
context, this sorts the LIST and returns the sorted list value. In scalar
context, the behaviour of sort() is ...



2.Perl sort Function

Description:Learn through examples how to use the Perl sort function to
sort a list by an alphabetical or numerical order



3.Sorting

Description:Sorting. The sort function sorts a list (an array). The
default is to sort alphabetically. However, you can define your own sorts
to get around numbers and complex ...



4.sort - perldoc.perl.org

Description:With the sort pragma you can control the behaviour of the
builtin sort() function. In Perl versions 5.6 and earlier the quicksort
algorithm was used to implement sort



5.Perl Sort

Description:[From Perl Cookbook] Perl sort function takes an optional code
block, which lets you replace the default alphabetic comparison subroutine
with your own.



6.Perl Sorting Techniques. - Perlfect

Description:An introduction to sorting, and how to write your own sorting
functions easily with perl. Includes some very common examples of sorts.



7.Sorting in Perl

Description:Sorting in Perl John Klassa ... Introduction. Perl has a
built-in "sort" function. It uses a quicksort algorithm, which has good
(in fact, O(n log n)) performance.



8.A brief tutorial on Perl's native sorting facilities.

Description:Simple sorting using sort. The basic method of sorting in Perl
is to use the built in sort function. my @sortedAlpha = sort @alphaData;
This does pretty much exactly ...



9.Perl sort Function

Description:Perl sort Function - Learning Perl in simple and easy steps -
A beginner's tutorial containing complete knowledge of Perl Syntax Syntax,
Classes, Variables, Comments ...



10.PERL - Array Variables - Perl Tutorial - Arrays

Description:A lesson with examples of Array indexing, Number Arrays, and
complete array manipulation in PERL. Learn everything about PERL Arrays.

No comments:

Post a Comment