📌  相关文章
📜  数组中元素的二进制表示中存在的设置位计数的乘积

📅  最后修改于: 2021-09-07 03:56:10             🧑  作者: Mango

给定一个由N 个整数组成的数组arr[] ,任务是找到每个数组元素的二进制表示中设置位计数的乘积。

例子:

方法:可以通过计算每个数组元素的二进制表示中的总位数来解决给定的问题。请按照以下步骤解决问题:

  • 初始化一个变量,比如product ,以存储结果产品。
  • 遍历给定的数组arr[]并执行以下步骤:
    • 找出整数arr[i]的集合位数并将其存储在变量 say bits 中
    • 产品的值更新为product*bits
  • 完成上述步骤后,打印乘积的值作为结果。

下面是上述方法的实现:

C++
// C++ program for the above approach
 
#include 
using namespace std;
 
// Function to count the
// set bits in an integer
int countbits(int n)
{
    // Stores the count of set bits
    int count = 0;
 
    // Iterate while N is not equal to 0
    while (n != 0) {
 
        // Increment count by 1
        if (n & 1)
            count++;
 
        // Divide N by 2
        n = n / 2;
    }
 
    // Return the total count obtained
    return count;
}
 
// Function to find the product
// of count of set bits present
// in each element of an array
int BitProduct(int arr[], int N)
{
    // Stores the resultant product
    int product = 1;
 
    // Traverse the array arr[]
    for (int i = 0; i < N; i++) {
 
        // Stores the count
        // of set bits of arr[i]
        int bits = countbits(arr[i]);
 
        // Update the product
        product *= bits;
    }
 
    // Return the resultant product
    return product;
}
 
// Driver Code
int main()
{
    int arr[] = { 3, 2, 4, 1, 5 };
    int N = sizeof(arr) / sizeof(arr[0]);
    cout << BitProduct(arr, N);
 
    return 0;
}


Java
// java program for the above approach
import java.io.*;
import java.lang.*;
import java.util.*;
 
public class GFG {
 
    // Function to count the
    // set bits in an integer
    static int countbits(int n)
    {
        // Stores the count of set bits
        int count = 0;
 
        // Iterate while N is not equal to 0
        while (n != 0) {
 
            // Increment count by 1
            if ((n & 1) != 0)
                count++;
 
            // Divide N by 2
            n = n / 2;
        }
 
        // Return the total count obtained
        return count;
    }
 
    // Function to find the product
    // of count of set bits present
    // in each element of an array
    static int BitProduct(int arr[], int N)
    {
       
        // Stores the resultant product
        int product = 1;
 
        // Traverse the array arr[]
        for (int i = 0; i < N; i++) {
 
            // Stores the count
            // of set bits of arr[i]
            int bits = countbits(arr[i]);
 
            // Update the product
            product *= bits;
        }
 
        // Return the resultant product
        return product;
    }
 
    // Driver Code
    public static void main(String[] args)
    {
        int arr[] = { 3, 2, 4, 1, 5 };
        int N = arr.length;
        System.out.print(BitProduct(arr, N));
    }
}
 
// This code is contributed by Kingash.


Python3
# Python3 program for the above approach
 
# Function to count the
# set bits in an integer
def countbits(n):
   
    # Stores the count of set bits
    count = 0
 
    # Iterate while N is not equal to 0
    while (n != 0):
 
        # Increment count by 1
        if (n & 1):
            count += 1
 
        # Divide N by 2
        n = n // 2
 
    # Return the total count obtained
    return count
 
# Function to find the product
# of count of set bits present
# in each element of an array
def BitProduct(arr, N):
   
    # Stores the resultant product
    product = 1
 
    # Traverse the array arr[]
    for i in range(N):
       
        # Stores the count
        # of set bits of arr[i]
        bits = countbits(arr[i])
 
        # Update the product
        product *= bits
 
    # Return the resultant product
    return product
 
# Driver Code
if __name__ == '__main__':
    arr = [3, 2, 4, 1, 5]
    N = len(arr)
    print(BitProduct(arr, N))
 
    # This code is contributed by mohit kumar 29.


C#
// C# program for the above approach
using System;
 
public class GFG {
 
    // Function to count the
    // set bits in an integer
    static int countbits(int n)
    {
        // Stores the count of set bits
        int count = 0;
 
        // Iterate while N is not equal to 0
        while (n != 0) {
 
            // Increment count by 1
            if ((n & 1) != 0)
                count++;
 
            // Divide N by 2
            n = n / 2;
        }
 
        // Return the total count obtained
        return count;
    }
 
    // Function to find the product
    // of count of set bits present
    // in each element of an array
    static int BitProduct(int[] arr, int N)
    {
 
        // Stores the resultant product
        int product = 1;
 
        // Traverse the array arr[]
        for (int i = 0; i < N; i++) {
 
            // Stores the count
            // of set bits of arr[i]
            int bits = countbits(arr[i]);
 
            // Update the product
            product *= bits;
        }
 
        // Return the resultant product
        return product;
    }
 
    // Driver Code
    public static void Main(string[] args)
    {
        int[] arr = { 3, 2, 4, 1, 5 };
        int N = arr.Length;
        Console.Write(BitProduct(arr, N));
    }
}
 
// This code is contributed by ukasp.


Javascript


输出:
4

时间复杂度: O(N * log M),M 是数组最大元素
辅助空间: O(1)

如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live