I have a project in Coursera that I have to present but when I submit the result it is always zero😭😭💔💔💔, Somebody help me, | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I have a project in Coursera that I have to present but when I submit the result it is always zero😭😭💔💔💔, Somebody help me,

C++ data structur, if u have Experience in c++ data structur dm me plzzzz 😭

4th Oct 2019, 10:00 AM
Hawaa Basheer Ali Elamin
Hawaa Basheer Ali Elamin - avatar
6 Answers
+ 1
I have done data structures and Algorithms course. So can you explain what is your problem statement (project) ? May be I can help you.
4th Oct 2019, 10:08 AM
Vijay Meena
+ 1
It's ok, It would also help me to revise my concepts.
4th Oct 2019, 10:12 AM
Vijay Meena
0
Vijay Meena Ohhh 😮 thank u before 😭😭♥️
4th Oct 2019, 10:10 AM
Hawaa Basheer Ali Elamin
Hawaa Basheer Ali Elamin - avatar
0
1.Question 1 A class called Pair has already been declared, but the constructors have not been implemented yet. Pair has two public member variables: int *pa,*pb; These two "pointers to int" are intended to point to heap memory locations that store integers. The remainder of the Pair class expects the following functionality. A single constructor Pair(int a, int b): This should set up pa and pb to point to newly allocated memory locations on the heap. The integers at those memory locations should be assigned values according to the constructor's integer arguments a and b.
4th Oct 2019, 10:14 AM
Hawaa Basheer Ali Elamin
Hawaa Basheer Ali Elamin - avatar
0
A copy constructor Pair(const Pair& other): This takes as its argument a read-only reference to another Pair. It should set up the newly constructed Pair as a "deep copy," that is, it should create a new Pair that is equivalent to the other Pair based on dereferenced values but does not reuse any of the same memory locations. In other words, the copy constructor should set up its own instance's member variables pa and pb to point to newly allocated memory locations for integers on the heap; those memory locations must be new, not the same locations pointed to by the other Pair, but the integers at these new locations should be assigned values according to the integers that the other Pair is pointing to. A destructor ~Pair() that de-allocates all of the the heap memory that had previously been allocated for this Pair's members. The,types of these member functions have already been declared in the declaration of Pair. Now you need to provide the implementation of each of these three member functions.
4th Oct 2019, 10:14 AM
Hawaa Basheer Ali Elamin
Hawaa Basheer Ali Elamin - avatar
0
Note: The function declarations shown in the code comment below do not include parameter names for the arguments. They show only the types of the arguments. This is allowed for a declaration, but when you define the implementation of those functions, you should give names to the parameters so that you can refer to them.) Reset Vijay Meena This is my project
4th Oct 2019, 10:15 AM
Hawaa Basheer Ali Elamin
Hawaa Basheer Ali Elamin - avatar