Thursday, July 4, 2024
HomeLanguagesPhpPHP | DsMap sort() Function

PHP | Ds\Map sort() Function

The Ds\Map::sort() function of DS\Map class in PHP is used to in-place sort the elements of a specified Map instance according to the values. By default, the Map is sorted according to the increasing order of the values.

Syntax:  

Ds\Pair public Ds\Map::sort ( int $position )

Parameter: This function accepts a comparator function according to which the values will be compared while sorting the Map. The comparator should return the following values based on the comparison of two values passed to it as a parameter:  

  • 1: if the first element is expected to be less than second element.
  • -1: if the first element is expected to be greater than second element.
  • 0: if the first element is expected to be equal to the second element.

Return value: The function does not returns any value. It just sorts the specified Map instance according to the comparator function passed.

Below programs illustrate the Ds\Map::sort() function:

Program 1:  

PHP




<?php
// PHP program to illustrate sort() function
 
$map = new \Ds\Map([1 => 20, 2 => 10, 3 => 30]);
 
// sort the Map
$map->sort();
 
// Print the sorted Map
print_r($map);
 
?>


Output: 

Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => 2
            [value] => 10
        )

    [1] => Ds\Pair Object
        (
            [key] => 1
            [value] => 20
        )

    [2] => Ds\Pair Object
        (
            [key] => 3
            [value] => 30
        )
)




Program 2: 

PHP




<?php
// PHP program to illustrate sort() function
 
$map = new \Ds\Map([1 => 20, 2 => 10, 3 => 30]);
 
// Declaring comparator function
$comp = function($first, $second){
        if($first>$second)
            return -1;
        else if($first<$second)
            return 1;
        else
            return 0;
};
 
// sort the Map
$map->sort($comp);
 
// Print the sorted Map
print_r($map);
 
?>


Output: 

Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => 3
            [value] => 30
        )

    [1] => Ds\Pair Object
        (
            [key] => 1
            [value] => 20
        )

    [2] => Ds\Pair Object
        (
            [key] => 2
            [value] => 10
        )

)




Reference: http://php.net/manual/en/ds-map.sort.php
 

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments