-
Notifications
You must be signed in to change notification settings - Fork 0
/
D1-String.cpp
480 lines (402 loc) · 11 KB
/
D1-String.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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
// 53. Maximum Subarray
// Approach 1: Brute Force
// for(int i=0 ->n){
// for(int j=0 ->n){
// for(int k=i -> j){
// sum = sum + arr[k];
// }
// }
// }
// for(int i=0 ->n){
// sum
// for(int j=0 ->n){
// for(int k=i -> j){
// sum = sum + arr[k];
// }
// }
// }
class Solution {
public:
int maxSubArray(vector<int>& nums) {
int sum = 0;
int maxi = nums[0];
for(int i=0; i<nums.size(); i++){
//Step-1
sum = sum + nums[i];
//Step-2
maxi = max(maxi, sum);
//Step-3
if(sum<0)
sum=0;
}
return maxi;
}
};
// DSA Sheet Sloving String Q-1: Maximum and minimum of an array using minimum number of comparisons
// Approch-1: set max and min from 1st two element of array
#include <iostream>
using namespace std;
int main() {
int n = 0;
int arr[n];
int max, min;
cin>>n;
for(int i=0; i<n; i++){
cin>>arr[i];
}
if(n==0){
max = arr[0];
min = arr[0];
}
if(n==1){
if(arr[0]>arr[1]){
max = arr[0];
min = arr[1];
}
else{
max = arr[1];
min = arr[0];
}
}
else{
if(arr[0]>arr[1]){
max = arr[0];
min = arr[1];
}
else{
max = arr[1];
min = arr[0];
}
for(int i=2; i<n; i++){
if(max<arr[i]){
max = arr[i];
}
if(min>arr[i]){
min = arr[i];
}
}
}
cout<<"Max" << max<<endl;
cout<<"Min" << min<<endl;
return 0;
}
// DSA Sheet Sloving String Q-2: Array Reverse
// Online C++ compiler to run C++ program online
#include <iostream>
using namespace std;
int main() {
int n, i, j, temp;
int arr[n];
cin>>n;
for(int k=0; k<n; k++){
cin >> arr[k];
}
for(int i=0, j=n-1; i<n/2; i++,j--){
temp = arr[i];
arr[j] = arr[i];
arr[j] = temp;
}
for(int k=0; k<n; k++){
cout << arr[k];
}
return 0;
}
// #include <iostream>
// using namespace std;
// /* run this program using the console pauser or add your own getch, system("pause") or input loop */
// void printSum(int arr[][3], int row, int col){
// for(int row=0; row<3; row++){
// int sum = 0;
// for(int col=0; col<3; col++){
// sum += arr[row][col];
// }
// cout<<sum<<" ";
// }
// }
// void printcolSum(int arr[][3], int row, int col){
// for(int row=0; row<3; row++){
// int sum = 0;
// for(int col=0; col<3; col++){
// sum += arr[col][row];
// }
// cout<<sum<<" ";
// }
// }
// bool isPresent(int arr[][4], int target, int row, int col){
// for(int row=0; row<3; row++){
// for(int col=0; col<4; col++){
// if(arr[row][col] == target){
// return 1;
// }
// }
// }
// return 0;
// }
// int LargetRowSum(int arr[][3], int row, int col){
// int maxi = INT_MIN;
// int rowIndex = -1;
// for( int row=0; row<3; row++){
// int sum = 0;
// for(int col=0; col<3; col++){
// sum += arr[row][col];
// }
// if(sum > maxi){
// maxi = sum;
// rowIndex = row;
// }
// }
// return rowIndex;
// }
// int main(int argc, char** argv) {
// // int arr1[3][4] = {{1,11,111,1111}, {2,22,222,2222}, {3,33,333,3333}};
// int arr2[3][3];
// for(int row=0; row<3; row++){
// for(int col=0; col<3; col++){
// cin>>arr2[row][col];
// }
// }
// for(int row=0; row<3; row++){
// for(int col=0; col<3; col++){
// cout<<arr2[row][col]<<" ";
// }
// cout<<endl;
// }
// //Sieve of Eratosthenes
// // class Solution {
// //public:
// // int countPrimes(int n) {
// // int count = 0;
// // vector<bool> prime(n+1, true);
// // prime[0] = prime[1] = false;
// //
// // for(int i=2; i<n; i++){
// // if(prime[i]){
// // count++;
// // for(int j=2*i; j<n; j=j+i){
// // prime[j] = 0;
// // }
// // }
// // }
// // return count;
// // }
// //};
// // class Solution {
// // bool isPrime(int n){
// // if(n<=1){
// // return false;
// // }
// // for(int i=2; i<n; i++){
// // if(n%i==0){
// // return false;
// // }
// // }
// // return true;
// // }
// //public:
// // int countPrimes(int n) {
// // int count = 0;
// // for(int i=2; i<n; i++){
// // if(isPrime(i)){
// // count++;
// // }
// // }
// // return count;
// // }
// //};
// // int target;
// // cin>>target;
// // if(isPresent(arr1, target, 3, 4)){
// // cout<<"Element Found";
// // }
// // else{
// // cout<<"Element Not Found";
// // }
// cout<<"Row Wise Sum = ";
// printSum(arr2, 3, 3);
// cout<<endl;
// // cout<<"Colum Wise Sum = ";
// // printcolSum(arr2, 3, 3);
// // cout<<endl;
// cout<<"The Largest Sum is "<<LargetRowSum(arr2, 3, 3);
// return 0;
// }
// //54. Spiral Matrix
// //class Solution {
// //public:
// // vector<int> spiralOrder(vector<vector<int>>& matrix) {
// // int row = matrix.size();
// // int col = matrix[0].size();
// // vector<int> ans;
// // int count = 0;
// // int total = row*col;
// // int startingRow = 0;
// // int startingCol = 0;
// // int endingRow = row-1;
// // int endingCol = col-1;
// //
// // while(count<total){
// //
// // for(int i=startingCol; count<total && i<=endingCol; i++){
// // ans.push_back(matrix[startingRow][i]);
// // count++;
// // }
// // startingRow++;
// //
// // for(int i=startingRow; count<total &&i<=endingRow; i++){
// // ans.push_back(matrix[i][endingCol]);
// // count++;
// // }
// // endingCol--;
// //
// // for(int i=endingCol; count<total && i>=startingCol; i--){
// // ans.push_back(matrix[endingRow][i]);
// // count++;
// // }
// // endingRow--;
// //
// // for(int i=endingRow; count<total && i>=startingRow; i--){
// // ans.push_back(matrix[i][startingCol]);
// // count++;
// // }
// // startingCol++;
// // }
// // return ans;
// // }
// //};
// //class Solution {
// //public:
// // vector<int> spiralOrder(vector<vector<int>>& matrix) {
// // int n=matrix.size(),m=matrix[0].size();
// // int left=0,top=0;
// // int bottom=n-1,right=m-1;
// // vector<int>ans;
// // while(left<=right&&top<=bottom)
// // {
// // for(int i=left;i<=right;i++)
// // {
// // ans.push_back(matrix[top][i]);
// // }
// // top++;
// // for(int i=top;i<=bottom;i++)
// // {
// // ans.push_back(matrix[i][right]);
// // }
// // right--;
// // if(top<=bottom)
// // {
// // for(int i=right;i>=left;i--)
// // {
// // ans.push_back(matrix[bottom][i]);
// // }
// // bottom--;
// // }
// // if(left<=right)
// // {
// // for(int i=bottom;i>=top;i--)
// // {
// // ans.push_back(matrix[i][left]);
// // }
// // left++;
// // }
// // }
// // return ans;
// // }
// //};
// //Rotate Image by 90 degree
// //class Solution {
// //public:
// // void rotate(vector<vector<int>>& matrix) {
// // int n = matrix.size();
// // for(int i=0; i<(n+1)/2;i++){
// // for(int j=0; j<n/2; j++){
// // int temp = matrix[n-1-j][i];
// // matrix[n-1-j][i] = matrix[n-1-i][n-j-1];
// // matrix[n-1-i][n-j-1] = matrix[j][n-1-i];
// // matrix[j][n-1-i] = matrix[i][j];
// // matrix[i][j] = temp;
// // }
// // }
// // }
// //
// //};
// //Print Like a Wave
// //#include <bits/stdc++.h>
// //vector<int> wavePrint(vector<vector<int>> arr, int nRows, int mCols)
// //{
// // vector<int> ans;
// //
// // for(int col=0; col<mCols; col++){
// // if(col&1){
// // for(int row=nRows-1; row>=0; row--){
// // ans.push_back(arr[row][col]);
// // }
// // }
// // else{
// // for(int row=0; row<nRows; row++){
// // ans.push_back(arr[row][col]);
// // }
// // }
// // }
// // return ans;
// //}
// // 2d matrix
// //class Solution {
// //public:
// // vector<int> findDiagonalOrder(vector<vector<int>>& matrix) {
// // // if(matrix.size()==0 || matrix[0].size()==0){
// // // return matrix;
// // // }
// // vector<int> ans;
// // int m = matrix.size();
// // int n = matrix[0].size();
// // int row=0, col=0;
// // bool up = true;
// //
// // while(row<m && col<n){
// // if(up){
// // while(row>0 && col<n-1){
// // ans.push_back(matrix[row][col]);
// // row--;
// // col++;
// // }
// // ans.push_back(matrix[row][col]);
// // if(col==n-1){
// // row++;
// // }
// // else{
// // col++;
// // }
// // }
// // else{
// // while(col>0 && row<m-1){
// // ans.push_back(matrix[row][col]);
// // row++;
// // col--;
// // }
// // ans.push_back(matrix[row][col]);
// // if(row==m-1){
// // col++;
// // }
// // else{
// // row++;
// // }
// // }
// // up = !up; // Fix: Toggle the boolean variable 'up'
// // }
// // return ans;
// // }
// //};
// // Modular Exponentiation
// //#include <bits/stdc++.h>
// //
// //int modularExponentiation(int x, int n, int m) {
// // int res = 1;
// // while(n>0){
// // if(n&1){
// // res = (1LL*(res) * (x)%m)%m;
// // }
// // x = (1LL * (x)%m * (x)%m) %m;
// // n = n>>1;
// // }
// // return res;
// //}