Minimum scalar product of two vectors

Write a program to find the minimum scalar product of two vectors.

Vectors are represented by arrays of the same size

Example:

Input: arr1[]={2,4,3}, arr2[]={4,6,2}
Output: Minimum scalar product is: 32

C Program

#include <stdio.h>

//function to sort the array in ascending
//order
void sortArrayAsc(int arr[]int n)
{
    for (int i = 0i < ni++)
    {
        for (int j = 0j < n - i - 1j++)
        {
            if (arr[j] > arr[j + 1])
            {
                int temp = arr[j];
                arr[j] = arr[j + 1];
                arr[j + 1] = temp;
            }
        }
    }
}

//function to sort the array in descending
//order
void sortArrayDesc(int arr[]int n)
{
    for (int i = 0i < ni++)
    {
        for (int j = 0j < n - i - 1j++)
        {
            if (arr[j] < arr[j + 1])
            {
                int temp = arr[j];
                arr[j] = arr[j + 1];
                arr[j + 1] = temp;
            }
        }
    }
}
int main()
{
    int arr1[] = {243};
    int arr2[] = {462};

    int n = sizeof(arr1) / sizeof(arr1[0]);
    sortArrayAsc(arr1n);

    sortArrayDesc(arr2n);

    int minimum = 0;
    for (int i = 0i < ni++)
    {
        minimum = minimum + arr1[i] * arr2[i];
    }

    printf("Minimum scalar product is: %d"minimum);
    return 0;
}


No comments:

Post a Comment