![]() |
VOOZH | about |
Given a List, extract all elements whose frequency is greater than K.
Input : test_list = [4, 6, 4, 3, 3, 4, 3, 4, 3, 8], K = 3
Output : [4, 3]
Explanation : Both elements occur 4 times.Input : test_list = [4, 6, 4, 3, 3, 4, 3, 4, 6, 6], K = 2
Output : [4, 3, 6]
Explanation : Occur 4, 3, and 3 times respectively.
Method #1 : Using count() + loop
In this, we use count() to get the frequency, and a loop is used to iterate for each of the elements of the List.
The original list : [4, 6, 4, 3, 3, 4, 3, 7, 8, 8] The required elements : [4, 3]
Time Complexity: O(n)
Auxiliary Space: O(n)
Method #2 : Using list comprehension + Counter()
In this, we perform the task of counting using Counter() and the iteration part is done inside list comprehension.
The original list : [4, 6, 4, 3, 3, 4, 3, 7, 8, 8] The required elements : [4, 3]
Time complexity: O(n), where n is the length of the test_list. The list comprehension + Counter() takes O(n) time
Auxiliary Space: O(n), extra space of size n is required
Method #3: Using a dictionary
In this we keep count of the elements, if the count of the element id K + 1, we add that element to the output.
The original list : [4, 6, 4, 3, 3, 4, 3, 4, 6, 6] The required elements : [4, 3, 6]
Time Complexity: O(n), where n is the length test_list.
Auxiliary Space: O(n), where n is number of elements in output list.
Method #4: Using operator.countOf() method
The original list : [4, 6, 4, 3, 3, 4, 3, 7, 8, 8] The required elements : [3, 4]
Time Complexity:O(N)
Auxiliary Space:O(N)
Method#5: using NumPy module
Output:
The required elements : [3, 4]
Time Complexity:O(N)
Auxiliary Space:O(N)
Method #6: Using filter() and lambda()
Algorithm:
The required elements : [4, 3]
Time Complexity:
The time complexity of this code is O(n), where n is the length of the input list. This is because the Counter() function from the collections module has a time complexity of O(n), where n is the number of elements in the list. The filter() function and the conversion to a list take linear time, which is also O(n).
Auxiliary Space:
The space complexity of this code is also O(n), where n is the length of the input list. This is because the Counter() function creates a dictionary that stores the frequency count of each element, and the size of this dictionary is proportional to the number of elements in the input list. The output list created by filter() can also be at most n elements long, so the space complexity of the final result is also O(n).
Method #7: Using defaultdict module from the collections library:
Algorithm:
The original list : [4, 6, 4, 3, 3, 4, 3, 7, 8, 8] The required elements : [4, 3]
Time Complexity: O(n), where n is the length of the input list. This is because we iterate through the list once to build the frequency dictionary and once again to find elements with frequency greater than K.
Auxiliary Space: O(n), where n is the length of the input list. This is because we store the frequency counts of each element in the test_list in the freq_dict dictionary. The space taken by the res list is proportional to the number of elements with frequency greater than K. However, the worst-case scenario is when all elements have a unique frequency count, resulting in a dictionary with n key-value pairs.