2- The purpose of the method resize() in the IntegerArray class below is to dynamically change the size of the IntegerArray instance. This methid is implemented as follows: 1. create a new array with the desired size 2. copy the data form the old to new one 3. delete the old data 4. Make the old data pointer points to the newly created data 5. update the size field your task is to write the resize() method based on the above five steps.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
1- Write a class that allows you to define complex numbers in C++ and call it
complex. The class contains two private members named real and img. It also has a
constructor to initialize its members to values other than zero. Then, write a four
methods that implement the basic mathematical operations (+,-.*) for two complex
numbers.
2- The purpose of the method resize() in the IntegerArray class below is to
dynamically change the size of the IntegerArray instance. This methid is
implemented as follows:
1. create a new array with the desired size
2. copy the data form the old to new one
3. delete the old data
4. Make the old data pointer points to the newly created data
5. update the size field
your task is to write the resize() method based on the above five steps.
#include <iostream>
int main() {
using namespace std;
IntegerArray a(2);
a.data[0] = 4;
class IntegerArray {
public:
a.data[1] = 2;
int *data;
a.resize(5);
int size;
cout << a.size << endl;
IntegerArray(int size) {
return 0;
}
data = new int[size];
this->size = size;
solve number 2
}
-IntegerArray()) {
delete[] data;
}
void resize(int s) {
}
};
(a+bi) (c+di)
=
=c(a+bi) + di (a+bi)
= ac+bci+adi + bdi² ---²=-1
= ac-bd + (bc + ad) i
a + bi
(a + bi) (c-di)
c+di
(c + di)(c-di)
(ac+bd) + (bc-ad)i
c²+d²
ac + bd
bc-ad
+
c²+d²
c²+d²
=
=
Transcribed Image Text:1- Write a class that allows you to define complex numbers in C++ and call it complex. The class contains two private members named real and img. It also has a constructor to initialize its members to values other than zero. Then, write a four methods that implement the basic mathematical operations (+,-.*) for two complex numbers. 2- The purpose of the method resize() in the IntegerArray class below is to dynamically change the size of the IntegerArray instance. This methid is implemented as follows: 1. create a new array with the desired size 2. copy the data form the old to new one 3. delete the old data 4. Make the old data pointer points to the newly created data 5. update the size field your task is to write the resize() method based on the above five steps. #include <iostream> int main() { using namespace std; IntegerArray a(2); a.data[0] = 4; class IntegerArray { public: a.data[1] = 2; int *data; a.resize(5); int size; cout << a.size << endl; IntegerArray(int size) { return 0; } data = new int[size]; this->size = size; solve number 2 } -IntegerArray()) { delete[] data; } void resize(int s) { } }; (a+bi) (c+di) = =c(a+bi) + di (a+bi) = ac+bci+adi + bdi² ---²=-1 = ac-bd + (bc + ad) i a + bi (a + bi) (c-di) c+di (c + di)(c-di) (ac+bd) + (bc-ad)i c²+d² ac + bd bc-ad + c²+d² c²+d² = =
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY