给定一个大小为N的数组arr[] ,任务是为每个非重复数组元素找到不超过该元素的 2 的最高幂。按升序打印 2 的幂。如果数组不包含任何非重复元素,则打印 “0” 。
例子:
Input: arr[ ] = { 4, 5, 4, 3, 3, 4 }
Output: 4
Explanation: The only non-repeating element in the array is 5. Therefore, the highest power of 2 not exceeding 5 is 4.
Input: arr[ ] = { 1, 1, 7, 6, 3 }
Output: 2 4 4
朴素的方法:解决这个问题最简单的方法是遍历数组,对于每个数组元素,检查它是否不重复。对于不重复的元素,请将它们添加到另一个数组中。然后,对于新数组中的每个元素,找到不超过该元素的 2 的最高幂并按升序打印它们。
时间复杂度: O(N 2 * log arr[i]),其中 arr[i] 是数组的最大数。
辅助空间: O(N)
高效的方法:最佳的想法是使用Hashing 。请按照以下步骤解决问题:
- 遍历数组arr[]并将每个数组元素的频率存储在 Map 中。
- 现在,遍历地图并检查任何元素的频率是否为1 。
- 对于所有这些元素,找到不超过该元素的 2 的最高幂并将其存储在一个向量中。
- 按升序对向量进行排序并打印向量中存在的元素。
下面是上述方法的实现:
C++
// C++ program to implement
// the above approach
#include
using namespace std;
// Function to find thr highest power of 2 for
// every non-repeating element in the array
void uniqueElement(int arr[], int N)
{
// Stores the frequency
// of array elements
unordered_map freq;
// Traverse the array
for (int i = 0; i < N; i++) {
// Update frequency of each
// element of the array
freq[arr[i]]++;
}
// Stores the non-repeating
// array elements
vector v;
// Traverse the Map
for (auto i : freq) {
if (i.second == 1) {
// Calculate log base 2
// of the current element
int lg = log2(i.first);
// Highest power of 2 <= i.first
int p = pow(2, lg);
// Insert it into the vector
v.push_back(p);
}
}
// If no element is non-repeating
if (v.size() == 0) {
cout << "0";
return;
}
// Sort the powers of 2 obtained
sort(v.begin(), v.end());
// Print the elements in the vector
for (auto i : v)
cout << i << " ";
}
// Driver Code
int main()
{
int arr[] = { 4, 5, 4, 3, 3, 4 };
// Size of array
int N = sizeof(arr) / sizeof(arr[0]);
uniqueElement(arr, N);
return 0;
}
Java
// Java program for the above approach
import java.util.*;
class GFG{
// Function to find thr highest power of 2 for
// every non-repeating element in the array
static void uniqueElement(int arr[], int N)
{
// Stores the frequency
// of array elements
HashMap freq
= new HashMap();
for (int i = 0; i < N; i++)
{
if (freq.containsKey(arr[i]))
{
freq.put(arr[i], freq.get(arr[i]) + 1);
}
else
{
freq.put(arr[i], 1);
}
}
// Stores the non-repeating
// array elements
ArrayList v
= new ArrayList();
// Traverse the Map
for (Map.Entry i : freq.entrySet()) {
if ((int)i.getValue() == 1) {
// Calculate log base 2
// of the current element
int lg = (int)(Math.log((int)i.getKey()) / Math.log(2));
// Highest power of 2 <= i.first
int p = (int)Math.pow(2, lg);
// Insert it into the vector
v.add(p);
}
}
// If no element is non-repeating
if (v.size() == 0) {
System.out.print("0");
return;
}
// Sort the powers of 2 obtained
Collections.sort(v);
// Print the elements in the vector
for (int i : v)
System.out.print( i + " ");
}
// Driver Code
public static void main(String[] args)
{
int arr[] = { 4, 5, 4, 3, 3, 4 };
// Size of array
int N = arr.length;
uniqueElement(arr, N);
}
}
// This code is contributed by code_hunt.
Python3
# Python3 program for the above approach
import math
# Function to find thr highest power of 2 for
# every non-repeating element in the array
def uniqueElement(arr, N):
# Stores the frequency
# of array elements
freq = {}
# Traverse the array
for i in range(N) :
# Update frequency
# of arr[i]
if arr[i] in freq :
freq[arr[i]] += 1;
else :
freq[arr[i]] = 1;
# Stores the non-repeating
# array elements
v = []
# Traverse the Map
for i in freq :
if (freq[i] == 1) :
# Calculate log base 2
# of the current element
lg = int(math.log2(i))
# Highest power of 2 <= i.first
p = pow(2, lg)
# Insert it into the vector
v.append(p)
# If no element is non-repeating
if (len(v) == 0) :
print("0")
return
# Sort the powers of 2 obtained
v.sort()
# Prthe elements in the vector
for i in v :
print(i, end = " ")
# Driver Code
arr = [ 4, 5, 4, 3, 3, 4 ]
# Size of array
N = len(arr)
uniqueElement(arr, N)
# This code is contributed by sanjoy_62.
C#
// C# program for the above approach
using System;
using System.Collections.Generic;
public class GFG{
// Function to find thr highest power of 2 for
// every non-repeating element in the array
static void uniqueElement(int []arr, int N)
{
// Stores the frequency
// of array elements
Dictionary freq
= new Dictionary();
for (int i = 0; i < N; i++)
{
if (freq.ContainsKey(arr[i]))
{
freq[arr[i]] = freq[arr[i]] + 1;
}
else
{
freq.Add(arr[i], 1);
}
}
// Stores the non-repeating
// array elements
List v
= new List();
// Traverse the Map
foreach(KeyValuePair i in freq) {
if ((int)i.Value == 1) {
// Calculate log base 2
// of the current element
int lg = (int)(Math.Log((int)i.Key) / Math.Log(2));
// Highest power of 2 <= i.first
int p = (int)Math.Pow(2, lg);
// Insert it into the vector
v.Add(p);
}
}
// If no element is non-repeating
if (v.Count == 0) {
Console.Write("0");
return;
}
// Sort the powers of 2 obtained
v.Sort();
// Print the elements in the vector
foreach (int i in v)
Console.Write( i + " ");
}
// Driver Code
public static void Main(String[] args)
{
int []arr = { 4, 5, 4, 3, 3, 4 };
// Size of array
int N = arr.Length;
uniqueElement(arr, N);
}
}
// This code is contributed by 29AjayKumar
Javascript
输出:
4
时间复杂度: O(N * log(MAXM)),其中 MAXM 是数组中最大的元素。
辅助空间: O(N)
如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live