-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOOPS.cpp
772 lines (599 loc) · 18.4 KB
/
OOPS.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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
#include<iostream>
#include<bits/stdc++.h>
#include<vector>
#include<cmath>
#include<string.h>
#include<algorithm>
#include<unordered_map>
using namespace std;
// class Array
// {
// public:
// int size;
// int *a;
// Array()
// {
// this->size = 1;
// a = new int[size];
// a[0] = 0;
// }
// void printArray()
// {
// for (int i = size - 1; i >= 0; i--)
// {
// cout << a[i] << "X^" << i << ' ';
// }
// cout << endl;
// }
// void insArr(int pos, int item)
// {
// if (pos >= size)
// {
// int *b = new int[pos + 1];
// for (int i = 0; i < size; i++)
// {
// b[i] = a[i];
// }
// for (int i = size; i < pos; i++)
// {
// b[i] = 0;
// }
// a = b;
// a[pos] = item;
// this->size = pos + 1;
// }
// else
// {
// a[pos] = item;
// }
// }
// void addPolynomials(Array &B)
// {
// int newSize = max(this->size, B.size);
// int *result = new int[newSize];
// for (int i = 0; i < newSize; i++)
// {
// result[i] = this->a[i] + B.a[i];
// }
// delete[] this->a;
// this->a = result;
// this->size = newSize;
// }
// };
// int main()
// {
// Array A, B;
// string user_inp;
// cout << "Enter coefficients for the first polynomial:\n";
// do
// {
// int pos, ele;
// cout << "Enter the degree: ";
// cin >> pos;
// cout << "Enter the coefficient: ";
// cin >> ele;
// A.insArr(pos, ele);
// A.printArray();
// cout << "Do you want to enter a new coefficient? (Y/N) ";
// cin >> user_inp;
// } while (user_inp != "n");
// cout << "\nEnter coefficients for the second polynomial:\n";
// do
// {
// int pos, ele;
// cout << "Enter the degree: ";
// cin >> pos;
// cout << "Enter the coefficient: ";
// cin >> ele;
// B.insArr(pos, ele);
// B.printArray();
// cout << "Do you want to enter a new coefficient? (Y/N) ";
// cin >> user_inp;
// } while (user_inp != "n");
// cout << "\nResultant Polynomial after addition:\n";
// A.addPolynomials(B);
// A.printArray();
// return 0;
// }
// #include<iostream>
// #include<bits/stdc++.h>
// #include<vector>
// #include<cmath>
// #include<string.h>
// #include<algorithm>
// #include<unordered_map>
// using namespace std;
// #include <bits/stdc++.h>
// using namespace std;
// class Array
// {
// public:
// int size;
// int *a;
// Array()
// {
// this->size = 1;
// a = new int[size];
// a[0] = 0;
// }
// void printArray()
// {
// for (int i = size - 1; i >= 0; i--)
// {
// cout << a[i] << "X^" << i << ' ';
// }
// cout << endl;
// }
// void insArr(int pos, int item)
// {
// if (pos >= size)
// {
// int *b = new int[pos + 1];
// for (int i = 0; i < size; i++)
// {
// b[i] = a[i];
// }
// for (int i = size; i < pos; i++)
// {
// b[i] = 0;
// }
// a = b;
// a[pos] = item;
// this->size = pos + 1;
// }
// else
// {
// a[pos] = item;
// }
// }
// };
// int main()
// {
// Array A;
// string user_inp;
// cout << "Do you want to enter a new co-efficient?(Y/N) ";
// cin >> user_inp;
// while (user_inp != "n")
// {
// int pos, ele;
// cout << "Enter the degree: ";
// cin >> pos;
// cout << "Enter the co-efficient: ";
// cin >> ele;
// A.insArr(pos, ele);
// A.printArray();
// cout << "Do you want to enter a new co-efficient?(Y/N) ";
// cin >> user_inp;
// }
// A.printArray();
// }
// class Array{
// int capacity;
// int size = 4;
// string datatype;
// int a[];
// public:
// Array(int capacity, int size, int b[]){
// this-> capacity = capacity;
// this-> size = size;
// int *a = new int[capacity];
// for (int i=0;i<size;i++){
// *(a+i) = b[i];
// }
// }
// Array() {
// size = 10;
// capacity = 8;
// }
// void insert(int index, int element) {
// if(size == capacity){
// cout<<"Can't insert new element";
// }
// a[size] = element;
// size++;
// };
// // void delete(int index, int element){
// // }
// void printArray() {
// for (int i=0;i<size;i++){
// cout<<a[i]<<" "<<endl;
// // break;
// }
// }
// void printPolynomial(){
// cout<<"Print Polynomial"<<endl;
// string ans = "";
// while(cin>>ans && (ans == "y")){
// int coeff = 0, degree = 0;
// cout<<"Enter the coefficient";
// cin>>coeff;
// cout<<"Enter degree";
// cin>>degree;
// }
// }
// };
// int main() {
// int s[] = {23,34,4,56,78};
// Array a(6,5,s);
// a.printArray();
// a.insert(1,900);
// a.printArray();
// a.insert(2,100);
// a.printArray();
// a.insert(3,456);
// // a.delete(2,100);
// }
// // class Solution {
// // public:
// // int getMaxFreq(int n, int A[]) {
// // // Create an unordered_map to store the frequency of each element
// // unordered_map<int, int> map;
// // // Iterate through the array and update the frequency for A[i]-1 and A[i]+1
// // for (int i = 0; i < n; ++i) {
// // map[A[i] - 1] = map[A[i] - 1] + 1; // Increment frequency for A[i]-1
// // map[A[i] + 1] = map[A[i] + 1] + 1; // Increment frequency for A[i]+1
// // }
// // // Find the maximum frequency in the map
// // int ans = 0;
// // for (const auto& kv : map) {
// // ans = max(kv.second, ans);
// // }
// // return ans;
// // }
// // int main() {
// // // Example usage:
// // int n = 5;
// // int A[] = {1, 2, 3, 4, 5};
// // int result = getMaxFreq(n, A);
// // cout << "Maximum Frequency: " << result << endl;
// // return 0;
// // }
// // };
// // int main() {
// // // Example usage:
// // int n = 5;
// // int A[] = {1, 2, 3, 4, 5};
// // int result = getMaxFreq(n, A);
// // cout << "Maximum Frequency: " << result << endl;
// // return 0;
// // }
// // class Fruit{
// // public:
// // string name;
// // string color;
// // };
// // int main() {
// // Fruit apple;
// // apple.name = "Apple";
// // apple.color = "Red";
// // cout << "Name of the fruit is :"<<apple.name<<endl; // Outputs Apple
// // Fruit *mango = new Fruit();
// // mango->name = "mango";
// // mango->color = "Yellow";
// // cout<<mango->color<<" "<<mango->name<<endl;
// // return 0;
// // }
// class Rectangle {int main() {}
// public:
// int l;
// int b;
// Rectangle(){
// l = 0;
// b = 0;
// }
// Rectangle(int x, int y){
// l = x;
// b = y;
// }
// Rectangle(Rectangle& r){
// l = r.l;
// b = r.b;
// }
// ~Rectangle(){ // Destructor...
// cout<<"Destructor is Called"<<endl;
// }
// };
// int main() {
// // Constructor default...
// Rectangle *r4 = new Rectangle();
// cout<<r4->l<<" "<<r4->b<<endl;
// delete r4;
// Rectangle r(3,5);
// cout<<r.l<<" "<<r.b<<endl;
// // Constructor parametrized....
// Rectangle r2(2,5);
// cout<<r2.l<<" "<<r2.b<<endl;
// // Constructor copy
// Rectangle r3 = r;
// cout<<r3.l<<" "<<r3.b<<endl;
// Rectangle r1 = r2;
// cout<<r1.l<<" "<<r1.b<<endl;
// }
// // class ABC{
// // int x;
// // public:
// // void set(int n){
// // x = n;
// // }
// // int get(){
// // return x;
// // }
// // };
// // int main() {
// // ABC obj1;
// // obj1.set(7890);
// // cout<<obj1.get();
// // }
// // int main() {
// // int count=0;
// // int arr[3][3] = {{1,0,0},{0,2,0},{2,0,0}};
// // for (int i = 0;i<3;i++){
// // for (int j=0;j<3;j++){
// // if(arr[i][j]!=0){
// // arr[0][i] = i;
// // arr[1][i] = j;
// // arr[2][i] = arr[i][j];
// // count++;
// // }
// // }
// // }
// // cout<<count;
// // }
int main(){
// a = {{1,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,5,0,0,0,2},{}};
int A[3][3] = {
{1,0,2},
{0,4,0},
{0,0,0}
};
int count_nonzero = 0;
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
if(arr[i][j]!=0){
count_nonzero++;
}
}
}
int sparse[3][count_nonzero];
int i = 0;
for(int r=0;r<3;r++){
for(int c=0;c<3;c++){
if( A[r][c]!=0){
sparse[0][i]=r;
sparse[1][i]=c;
sparse[2][i]=A[r][c];
i++;
}
}
}
for(int r=0;r<3;r++){
for(int c=0;c<3;c++){
cout<<sparse[r][c]<<" ";
}
cout<<endl;
}
}
// // class Employee { //Class Declaration
// // public:
// // string id, name;
// // int years; //experience (in years)
// // Employee(string id, string name, int years) {
// // this->id = id;
// // this->name = name;
// // this->years = years;
// // }
// // void work() {
// // cout << "Employee: " << this->id << " is working\n";
// // }
// // };
// // int main()
// // {
// // //Class Instantiation (Direct)
// // Employee emp("GFG123", "John", 3);
// // //Class Instantiation (Indirect)
// // Employee *emp_ptr = new Employee("GFG456", "James", 4);
// // cout << "Employee ID: " << emp.id << endl;
// // cout << "Name: " << emp.name << endl;
// // cout << "Experience (in years): " << emp.years << endl;
// // emp.work();
// // cout << endl;
// // cout << "Employee ID: " << emp_ptr->id << endl;
// // cout << "Name: " << emp_ptr->name << endl;
// // cout << "Experience (in years): " << emp_ptr->years << endl;
// // emp_ptr->work();
// // return 0;
// // }
// // class Employee { //Class Declaration
// // public:
// // string id, name;
// // int years; //experience (in years)
// // Employee(string id, string name, int years) {
// // this->id = id;
// // this->name = name;
// // this->years = years;
// // }
// // //Prototype Declaration
// // void work();
// // };
// // //Outside-class definition
// // void Employee::work() {
// // cout << "Employee: " << this->id << " is working\n";
// // }
// // int main()
// // {
// // //Class Instantiation (Direct)
// // Employee emp("GFG123","John",3);
// // emp.work();
// // return 0;
// // }
// // class Solution {
// // public:
// // int minPairSum(vector<int>& nums) {
// // sort(nums.begin(),nums.end());
// // int i = 0;
// // int j = nums.size() - 1;
// // int len = nums.size();
// // int ans = INT_MIN;
// // int sum = 0;
// // for (int i=0;i<len/2;i++){
// // int sum = nums[i]+nums[j];
// // int ans = max(ans,sum);
// // j--;
// // }
// // return ans;
// // }
// // };
// // class Cars{
// // public:
// // int weight;
// // int height;
// // float MILAJ;
// // string colour;
// // };
// // int main(){
// // Cars XUV;
// // XUV.weight = 150;
// // XUV.colour = "RED";
// // XUV.MILAJ = 2.5;
// // cout<<XUV.weight<<endl<<XUV.colour<<endl<<XUV.MILAJ<<endl;
// // /* The above code is declaring a pointer variable `car` of type `Cars` and initializing it with a
// // new instance of the `Cars` class. */
// // Cars *car = new Cars();
// // car->weight = 150;
// // car->height = 50;
// // car->MILAJ = 2.5;
// // cout<<car<<endl;
// // cout<<endl<<car->weight<<endl<<car->height<<endl<<car->MILAJ;
// // return 0;
// // }
// // // Define a class called Car
// // class Car {
// // public:
// // // Class attribute (shared by all instances of the class)
// // static std::string fuelType;
// // // Constructor method (called when an object is created)
// // Car(std::string make, std::string model, int year) {
// // // Instance attributes (specific to each instance)
// // this->make = make;
// // this->model = model;
// // this->year = year;
// // this->isRunning = false; // Additional attribute to track the car's running state
// // }
// // // Instance method (defines behavior associated with an instance)
// // void startEngine() {
// // if (!isRunning) {
// // std::cout << "The " << year << " " << make << " " << model << "'s engine is now running." << std::endl;
// // isRunning = true;
// // } else {
// // std::cout << "The engine is already running." << std::endl;
// // }
// // }
// // void stopEngine() {
// // if (isRunning) {
// // std::cout << "The " << year << " " << make << " " << model << "'s engine is now stopped." << std::endl;
// // isRunning = false;
// // } else {
// // std::cout << "The engine is already stopped." << std::endl;
// // }
// // }
// // void displayInfo() {
// // std::cout << year << " " << make << " " << model << ", Fuel Type: " << fuelType << std::endl;
// // }
// // private:
// // // Instance attributes (accessible only within the class)
// // std::string make;
// // std::string model;
// // int year;
// // bool isRunning;
// // };
// // // Initialize the class attribute
// // std::string Car::fuelType = "Petrol";
// // int main() {
// // // Create instances of the 'Car' class
// // Car car1("Toyota", "Camry", 2022);
// // Car car2("Honda", "Accord", 2023);
// // // Accessing and modifying instance attributes
// // std::cout << car1.getMake() << std::endl; // Output: Toyota
// // car2.setYear(2024);
// // // Accessing class attribute
// // std::cout << Car::fuelType << std::endl; // Output: Petrol
// // // Calling instance methods
// // car1.startEngine(); // Output: The 2022 Toyota Camry's engine is now running.
// // car2.stopEngine(); // Output: The 2023 Honda Accord's engine is now stopped.
// // // Displaying information about the cars
// // car1.displayInfo(); // Output: 2022 Toyota Camry, Fuel Type: Petrol
// // car2.displayInfo(); // Output: 2024 Honda Accord, Fuel Type: Petrol
// // return 0;
// // }
// // class Car {
// // public:
// // // Class attribute (shared by all instances of the class)
// // static string fuelType;
// // // Constructor method (called when an object is created)
// // Car(string make, string model, int year) {
// // // Instance attributes (specific to each instance)
// // this->make = make;
// // this->model = model;
// // this->year = year;
// // this->isRunning = false; // Additional attribute to track the car's running state
// // }
// // // Getter methods for private attributes
// // string getMake() const {
// // return make;
// // }
// // string getModel() const {
// // return model;
// // }
// // int getYear() const {
// // return year;
// // }
// // // Setter method for a private attribute
// // void setYear(int year) {
// // this->year = year;
// // }
// // // Instance method (defines behavior associated with an instance)
// // void startEngine() {
// // if (!isRunning) {
// // std::cout << "The " << year << " " << make << " " << model << "'s engine is now running." << endl;
// // isRunning = true;
// // } else {
// // std::cout << "The engine is already running." << endl;
// // }
// // }
// // void stopEngine() {
// // if (isRunning) {
// // cout << "The " << year << " " << make << " " << model << "'s engine is now stopped." << endl;
// // isRunning = false;
// // } else {
// // cout << "The engine is already stopped." << endl;
// // }
// // }
// // void displayInfo() const {
// // std::cout << year << " " << make << " " << model << ", Fuel Type: " << fuelType << endl;
// // }
// // private:
// // // Instance attributes (accessible only within the class)
// // string make;
// // string model;
// // int year;
// // bool isRunning;
// // };
// // // Initialize the class attribute
// // string Car::fuelType = "Petrol";
// // int main() {
// // // Create instances of the 'Car' class
// // Car car1("Toyota", "Camry", 2022);
// // Car car2("Honda", "Accord", 2023);
// // // Accessing and modifying instance attributes
// // cout << car1.getMake() << std::endl; // Output: Toyota
// // car2.setYear(2024);
// // // Accessing class attribute
// // cout << Car::fuelType << endl; // Output: Petrol
// // // Calling instance methods
// // car1.startEngine(); // Output: The 2022 Toyota Camry's engine is now running.
// // car2.stopEngine(); // Output: The 2023 Honda Accord's engine is now stopped.
// // // Displaying information about the cars
// // car1.displayInfo(); // Output: 2022 Toyota Camry, Fuel Type: Petrol
// // car2.displayInfo(); // Output: 2024 Honda Accord, Fuel Type: Petrol
// // return 0;
// // }