Open In App

Php Program for Third largest element in an array of distinct elements

Given an array of n integers, find the third largest element. All the elements in the array are distinct integers. 
Example : 
 

Input: arr[] = {1, 14, 2, 16, 10, 20}
Output: The third Largest element is 14

Explanation: Largest element is 20, second largest element is 16 
and third largest element is 14

Input: arr[] = {19, -10, 20, 14, 2, 16, 10}
Output: The third Largest element is 16

Explanation: Largest element is 20, second largest element is 19 
and third largest element is 16

 



Naive Approach: The task is to first find the largest element, followed by the second-largest element and then excluding them both find the third-largest element. The basic idea is to iterate the array twice and mark the maximum and second maximum element and then excluding them both find the third maximum element, i.e the maximum element excluding the maximum and second maximum.
 




<?php
// PHP program to find third 
// Largest element in an array
// of distinct elements
  
function thirdLargest($arr, $arr_size)
{
    /* There should be atleast
    three elements */
    if ($arr_size < 3)
    {
        echo " Invalid Input ";
        return;
    }
  
    // Find first largest element
    $first = $arr[0];
    for ($i = 1; $i < $arr_size ; $i++)
        if ($arr[$i] > $first)
            $first = $arr[$i];
  
    // Find second largest element
    $second = PHP_INT_MIN;
    for ($i = 0; $i < $arr_size ; $i++)
        if ($arr[$i] > $second && 
               $arr[$i] < $first)
            $second = $arr[$i];
  
    // Find third largest element
    $third = PHP_INT_MIN;
    for ($i = 0; $i < $arr_size ; $i++)
        if ($arr[$i] > $third && 
              $arr[$i] < $second)
            $third = $arr[$i];
  
    echo "The third Largest element is "
                             $third,"
";
}
  
// Driver Code
$arr = array(12, 13, 1, 
             10, 34, 16);
$n = sizeof($arr);
thirdLargest($arr, $n);
  
// This code is contributed by m_kit
?>

The third Largest element is 13

Efficient Approach: The problem deals with finding the third largest element in the array in a single traversal. The problem can be cracked by taking help of a similar problem- finding the second maximum element. So the idea is to traverse the array from start to end and to keep track of the three largest elements up to that index (stored in variables). So after traversing the whole array, the variables would have stored the indices (or value) of the three largest elements of the array.
 






<?php
// PHP program to find third 
// Largest element in an array
  
function thirdLargest($arr, $arr_size)
{
    /* There should be atleast
       three elements */
    if ($arr_size < 3)
    {
        echo " Invalid Input ";
        return;
    }
  
    // Initialize first, second and 
    // third Largest element
    $first = $arr[0]; 
    $second = PHP_INT_MIN;
    $third = PHP_INT_MIN;
  
    // Traverse array elements to
    // find the third Largest
    for ($i = 1; $i < $arr_size ; $i ++)
    {
        /* If current element is greater 
        than first, then update first, 
        second and third */
        if ($arr[$i] > $first)
        {
            $third = $second;
            $second = $first;
            $first = $arr[$i];
        }
  
        /* If arr[i] is in between
        first and second */
        else if ($arr[$i] > $second)
        {
            $third = $second;
            $second = $arr[$i];
        }
  
        /* If arr[i] is in between
        second and third */
        else if ($arr[$i] > $third)
            $third = $arr[$i];
    }
  
    echo "The third Largest element is "
                                  $third;
}
  
// Driver Code
$arr = array (12, 13, 1, 
              10, 34, 16);
$n = sizeof($arr);
thirdLargest($arr, $n);
  
// This code is contributed by jit_t
?>

The third Largest element is 13

Please refer complete article on Third largest element in an array of distinct elements for more details!


Article Tags :