📌  相关文章
📜  可以由给定数组中的一对构成的最大数

📅  最后修改于: 2021-05-17 06:53:25             🧑  作者: Mango

给定数组arr [] ,任务是在给定数组中查找可以由一对构成的最大数字。
例子:

方法:想法是形成数组的每个可能的对。然后,对于每个XY对,将它们分别作为XY和YX加入,并从所有这些对中获取最大值。

下面是上述方法的实现:

C++
// C++ implementation to find the
// greatest number from the
// given pairs of the array
 
#include 
using namespace std;
 
// Function to find the greatest
// number formed from the pairs
string getNumber(int a, int b)
{
    string X = to_string(a);
    string Y = to_string(b);
 
    // first append Y at
    // the end of X
    string XY = X + Y;
 
    // then append X at
    // the end of Y
    string YX = Y + X;
 
    // Now see which of the
    // two formed numbers
    // is greater than other
    return XY > YX ? XY : YX;
}
 
// Function to find pairs from array
void printMaxPair(int arr[], int n)
{
    int largest = INT_MIN;
 
    // Iterate through all pairs
    for (int i = 0; i < n; i++)
        for (int j = i + 1; j < n; j++) {
            int number = stoi(
                getNumber(arr[i], arr[j]));
            largest = max(largest, number);
        }
    cout << largest;
}
 
// Driver code
int main()
{
    int a[] = { 23, 14, 16, 25, 3, 9 };
    int n = sizeof(a) / sizeof(a[0]);
    printMaxPair(a, n);
    return 0;
}


Java
// Java implementation to find the
// greatest number from the
// given pairs of the array
import java.util.*;
 
class GFG{
 
// Function to find the greatest
// number formed from the pairs
static String getNumber(int a, int b)
{
    String X = Integer.toString(a);
    String Y = Integer.toString(b);
 
    // First append Y at
    // the end of X
    String XY = X + Y;
 
    // Then append X at
    // the end of Y
    String YX = Y + X;
 
    // Now see which of the
    // two formed numbers
    // is greater than other
    return XY.compareTo(YX) > 0 ? XY : YX;
     
}
 
// Function to find pairs from array
static void printMaxPair(int arr[], int n)
{
    int largest = Integer.MIN_VALUE;
 
    // Iterate through all pairs
    for(int i = 0; i < n; i++)
       for(int j = i + 1; j < n; j++)
       {
          int number = Integer.parseInt(getNumber(arr[i],
                                                  arr[j]));
          largest = Math.max(largest, number);
       }
       System.out.println(largest);
}
 
// Driver code
public static void main(String[] args)
{
    int a[] = { 23, 14, 16, 25, 3, 9 };
    int n = a.length;
     
    printMaxPair(a, n);
}
}
 
// This code is contributed by offbeat


Python3
# Python3 implementation to find the
# greatest number from the
# given pairs of the array
import sys;
 
# Function to find the greatest
# number formed from the pairs
def getNumber(a, b):
 
    X = str(a);
    Y = str(b);
 
    # first append Y at
    # the end of X
    XY = X + Y;
 
    # then append X at
    # the end of Y
    YX = Y + X;
 
    # Now see which of the
    # two formed numbers
    # is greater than other
    if(XY > YX):
        return XY;
    else:
        return YX;
 
# Function to find pairs from array
def printMaxPair(arr, n):
 
    largest = -sys.maxsize - 1;
 
    # Iterate through all pairs
    for i in range(0, n):
        for j in range(i + 1, n):
            number = int(getNumber(arr[i],
                                   arr[j]));
            largest = max(largest, number);
         
    print(largest);
 
# Driver code
a = [ 23, 14, 16, 25, 3, 9 ];
n = len(a);
printMaxPair(a, n);
 
# This code is contributed by Code_Mech


C#
// C# implementation to find the
// greatest number from the
// given pairs of the array
using System;
 
class GFG{
 
// Function to find the greatest
// number formed from the pairs
static String getNumber(int a, int b)
{
    String X = a.ToString();
    String Y = b.ToString();
 
    // First append Y at
    // the end of X
    String XY = X + Y;
 
    // Then append X at
    // the end of Y
    String YX = Y + X;
 
    // Now see which of the
    // two formed numbers
    // is greater than other
    return XY.CompareTo(YX) > 0 ? XY : YX;
     
}
 
// Function to find pairs from array
static void printMaxPair(int []arr, int n)
{
    int largest = int.MinValue;
 
    // Iterate through all pairs
    for(int i = 0; i < n; i++)
       for(int j = i + 1; j < n; j++)
       {
          int number = Int32.Parse(getNumber(arr[i],
                                             arr[j]));
          largest = Math.Max(largest, number);
       }
       Console.WriteLine(largest);
}
 
// Driver code
public static void Main(String[] args)
{
    int []a = { 23, 14, 16, 25, 3, 9 };
    int n = a.Length;
     
    printMaxPair(a, n);
}
}
 
// This code is contributed by Amit Katiyar


Javascript


输出:
2523