-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path22 Missing elements in Unsorted Array (HASH TABLE).cpp
87 lines (72 loc) · 1.83 KB
/
22 Missing elements in Unsorted Array (HASH TABLE).cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//Hash table with size equal to the largest element present in the array
#include<iostream>
using namespace std;
struct Array {
int* A;
int size;
int length;
};
int Min(struct Array* arr) {
int min = INT_MAX;
for (int i = 0; i < arr->length; i++) {
if (arr->A[i] < min)
min = arr->A[i];
}
return min;
}
int Max(struct Array* arr) {
int max = INT_MIN;
for (int i = 0; i < arr->length; i++)
if (arr->A[i] > max)
max = arr->A[i];
return max;
}
void Missingelemet_Hash_table(struct Array* arr) {
int* H;
int i;
int low = Min(arr);
int high = Max(arr);
H = new int[high];
for (int i = 0; i < high; i++)H[i] = { 0 };
for (i = 0; i < arr->length-1; i++) {
H[arr->A[i]]++;
}
for (i = Min(arr); i <= high; i++) {
if (H[i] == 0)
cout << i<<" ";
}
}
int main() {
struct Array arr;
int no;
cout << "Enter the size of the array " << endl;
cin >> arr.size;
arr.A = new int[arr.size];
arr.length = 0;
cout << "Enter the size of the array" << endl;
cin >> no;
cout << "Enter the elements of the array " << endl;
for (int i = 0; i < no; i++)
cin >> arr.A[i];
arr.length = no;
Missingelemet_Hash_table(&arr);
return 0;
}
// ------------------------------------------------------------------------------------------------------------------------------------------------------
#include<iostream>
using namespace std;
int main()
{
int a[8] = { 1,2,3,5,6,8,12,14 };
int n = sizeof(a) / sizeof(int);
int h[14] = { 0 };
for (int i = 0; i < n; i++) //for loop to increment values at indices equal to the element in first array
h[a[i]]++;
for (int i = 1; i <= 14; i++)
{
if (h[i] == 0) //to check which indices are 0 so those elements are missing
cout << "Missing element is: " << i << endl;
}
cout << endl;
return 0;
}