-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgfg_find_index.c
165 lines (132 loc) · 3.48 KB
/
gfg_find_index.c
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#include<stdio.h>
int main()
{
int testCaseCount;
scanf("%d",&testCaseCount);
for(int count=0; count<testCaseCount; count++)
{
// Step 1 ----> Get the Input
int size;
scanf("%d",&size);
int input[size];
for(int i=0; i<size; i++)
{
scanf("%d",&input[i]);
}
int key;
scanf("%d",&key);
// Step 2 ----> check whether the key is present or not
int keyStatus = 0;
for(int i=0; i<size;)
{
if(input[i] == key) {
keyStatus = 1;
break;
} else {
i++;
}
}
if(keyStatus)
{
// Step 3 ----> check whether the key is repeated or not
int repeatedCount = -1;
for(int i=0; i<size;) // Get the repeated count
{
if(input[i] == key) {
repeatedCount++;
i++;
} else {
i++;
}
}
// Step 4 ----> Store the index of the key in a separate array
int startIndex;
int endIndex;
int statusBit = 1;
if(repeatedCount >= 1) {
for(int i=0; i<size; i++)
{
if(input[i] == key && statusBit == 1) {
startIndex = i;
statusBit = 0;
} else {
if(input[i] == key) {
endIndex = i;
}
}
}
} else {
for(int i=0; i<size; i++)
{
if(input[i] == key) {startIndex = i;endIndex = i;break;}
}
}
// Step 5 ----> Print the output
printf("%d %d\n",startIndex,endIndex);
} else {
printf("-1\n");
}
}
return 0;
}
/*
int main()
{
// Step 1 ----> Get the Input
int size = 6;
int input[] = {6 ,5 ,4 ,3 ,1 ,2};
int key = 14;
// Step 2 ----> check whether the key is present or not
int keyStatus = 0;
for(int i=0; i<size;)
{
if(input[i] == key) {
keyStatus = 1;
break;
} else {
i++;
}
}
if(keyStatus)
{
// Step 3 ----> check whether the key is repeated or not
int repeatedCount = -1;
for(int i=0; i<size;) // Get the repeated count
{
if(input[i] == key) {
repeatedCount++;
i++;
} else {
i++;
}
}
// Step 4 ----> Store the index of the key in a separate array
int startIndex;
int endIndex;
int statusBit = 1;
if(repeatedCount >= 1) {
for(int i=0; i<size; i++)
{
if(input[i] == key && statusBit == 1) {
startIndex = i;
statusBit = 0;
} else {
if(input[i] == key) {
endIndex = i;
}
}
}
} else {
for(int i=0; i<size; i++)
{
if(input[i] == key) {startIndex = i;endIndex = i;break;}
}
}
// Step 5 ----> Print the output
printf("%d %d\n",startIndex,endIndex);
} else {
printf("-1\n");
}
return 0;
}
*/