Explain dynamic memory management in detail

Assignment Help Basic Computer Science
Reference no: EM13988341

In this assignment, you will use several advanced object-oriented features in C++ like copy constructor, convert constructor, and dynamic memory management.

Problem description

Built-in integer types in C++ cannot store very large values. For example, the maximal value of the (64 bit) unsigned long long int type is 2^64 - 1 = 18,446,744,073,709,551,615 i.e. having around 20 digits.

In this assignment you will define class BigInteger for large integer values with unlimited number of digits. Partial declaration and implementation code for class BigInteger has been provided in two files BigInteger.h and BigInteger.cpp Link (Links to an external site.). Reading the code, you can see that:

1. Class BigInteger has three fields. 'digits' is a dynamic array of characters to store the digits. Its current size is stored in field 'size' while 'nDigits' is the actual number of non-trivial digits.

For example, to store the number 1234, you can allocate the dynamic array of 4 bytes: 'digits' = {4, 3, 2, 1}. In this case 'size' = 4 and 'nDigits' = 4. It should be noted that 'digits' stores the digits from right to left, i.e. the last digit 4 is stored as position 0 while the first digit 1 is stored as position 3. This simplifies the arthimetic operations (e.g. addition and multiplication). In addition, 'size' and 'nDigits' might not be the same. For example, we can use a dynamic array of 8 bytes to store 1234, i.e. 'digits' = {4, 3, 2, 1, 0, 0, 0, 0}. Thus, 'size' = 8 while 'nDigits' = 4.

2. Class BigInteger has two public methods 'getDigit' and 'setDigit' to read or write a digit at a given position 'pos'. It should be noted that when pos >= nDigits, 'getDigit' will return 0. More important, when pos >= size, i.e. we are trying to write a position exceeding the current size, we will re-allocate 'digits' with a larger size (a power of 2 bigger than pos).

For example, assume 'size' = 4, 'digits' = {4,3,2,1}, and 'nDigits' = 4. If we call getDigit(3), we will get 1 (i.e. the digit at position 3). However, calling getDigit(8) will return 0 because the digit at position 8 is zero. Now, we call setDigit(6, 5) to assign 5 to the digit at position 6. Because 'digits' currently can store only 4 digits, we re-allocate it as a new dynamic array of 8 digits (8 is the smallest power of 2 bigger than 6). After this re-allocation and assignment, we have 'size' = 8, 'digits' = {4,3,2,1,0,0,5,0} and 'nDigits' = 7.

3. Because class BigInteger uses a dynamic array ('digits' is declared as a char* pointer), constructing, destroying, and copying BigInteger objects requires processing of such arrays. Therefore, we have to define the destructor, copy constructor, and copy assignment operator.

Programming tasks

Task 1 . Implement method 'init(int size)' to allocate memory for 'digits' and assign the given value for 'size'. The allocated array should be filled with zeros.

Task 2 . Implement two constructors to initialize a BigInteger object from an int value  or a string storing an integer value . Hint: You can use method setDigit

Task 3 . Overload operators << for writing a BigInteger object to the screen. This operator can use method 'print' in class BigInteger (without debug information).

Task 4 . In main.cpp, complete the code to compute 999! You could use function multiply, which multiplies a BigInteger x to an int value y and shift the result p digits to the right, i.e. performing x * y * 10^p. The default value of p is 0 (i.e. no shifting for typical multiplication).

PART II

This assignment continues the task of implementing BigInteger in Assignment 5. In this assignment, you will overload several operators for BigInteger objects. Your submission for Assignment 5 should be used as the starter code.

Programming tasks

Task 1 . Overload operator + for adding two BigInteger objects. You can do this similar to function multiply, which multiplies a BigInteger x to an int value y and shift the result p digits to the right, i.e. it computes x*y*10p.

Task 2. Overload operator * for multiplying two BigInteger objects. You can use function multiply as a helper function. That is, if y0, y1..., yn is the digits of y, y=&Sum;i=0nyi*10i thus x*y=&Sum;i=0nx*yi*10i.

Task 3 . In main.cpp, complete the code to compute the 1000th Fibonacci number. The Fibonacci sequence is defined as the following rules: Fibo[0] = 1, Fibo[1] = 1, Fibo[n] = Fibo[n-1] + Fibo[n-2].

Task 4 . Overload operators == , != , <, and > (1 point) for comparing two BigInteger objects. Note that != can be defined via == and > is defined via <.

Task 5  . In main.cpp, compute 2^1000, 2^1001, and 2^2001 and verify your comparison operators using the following tests:

2^1000 < 2^1001

2^1000 * 2^1001 == 2^2001

Reference no: EM13988341

Questions Cloud

Present income statement and balance sheet : Present Income Statement and Balance Sheet for at least 2 years. Provide Industry ratios for at least 3 different ratios. Would you consider working for this company? Why or why not?
Contractual relationships impact the project initiation : How do contractual relationships impact the project initiation? What are factors to be consider in a project contract? Why does the project team need to be aware of these contracts before they begin the project?
Why women can not drive in saudi arabia : Write a five pages research on "Why Women Can't Drive in Saudi Arabia" with work cited . What is the solution for the problem?
Examples of the types of hospitals : Discuss what a hospital is and describe the different types of hospitals. Give examples of the types of hospitals in your respective community, and how these hospitals impact community member’s ability to receive care
Explain dynamic memory management in detail : In this assignment you will define class BigInteger for large integer values with unlimited number of digits. Partial declaration and implementation code for class BigInteger has been provided in two files BigInteger.h and BigInteger.cpp Link (Lin..
Understanding about services marketing : According to your understanding about Services Marketing, in the future if you would like to engage the service industry, (1) Which service industry do you like? Why? (2) In this industry, what is the top one company in this industry?
Design the parement thickness required using gi method : A soil subgrade has following data, Percent lines = 60%, passing through 0.074mm sieve, Liquid limit = 46%, Plastic limit = 21%, Design the parement thickness required using G.I. method.
How is the presentation of a child with ptsd different : How is the presentation of a child with PTSD different from that of an adult with the same disorder
Relationship between training program design-capabilities : Explain the relationship between training program design and capabilities. Identify the steps you would take to design a training to address high priority capabilities in your selected organization.

Reviews

Write a Review

 

Basic Computer Science Questions & Answers

  Organisational changes to implement the long-term plan

What organisational changes are necessary in order to implement the long-term plan derived in question number two above?

  Write a class name circle

Circle Class. Write a class name Circle, with the class declaration in a file called Circle.h and the implementation in a file called Circle.cpp. The class will have two data members, a double that holds the radius of the circle and a double called p..

  How the algorithm from class for checking

Show step-by-step how the string 0001010001 would be compressed by the SEQUITUR algorithm.

  Compare and contrast defensive technologies

Compare and contrast defensive technologies

  Planetary motion in four and higher dimensions

Consider the motion of planets in planar circular orbits around heavy stars in our four­ dimensional spacetime and in  spacetimes with  additional spatial dimensions.

  Identify possible actors and use cases

1. Identify possible actors and use cases involved in Personal Trainer's operations. 2. Create an object relationship diagram for the Personal Trainer information system.

  Describe your chosen architecture pattern

Describe your chosen architecture pattern. Explain why you selected the architecture of this case study.Explain how your chosen pattern could be applied to this case study.

  How many other machines is each machine equivalent to

Every turing machine is equivalent to some other machine in our enumeration. why? how many other machines is each machine equivalent to? how many times is each turing-computable function represented in our enumeration? be sure to justify your answ..

  Implementation of self-adjusting lists

Write a linked list implementation of self-adjusting lists. Suppose each element has a ?xed probability, pi, of being accessed. Show that the elements with highest access probability are expected to be close to the front.

  Determine the monthly charges for checking accounts

he billing department at the bank has asked for your team's help. They want to develop a program that will determine the monthly charges for checking accounts.

  Suppose you want to manage a relatively small project

Suppose you want to manage a relatively small project, but you have no access to project management software of any kind. How could you use a spreadsheet program or a database program to manage the project? Share your ideas in 750 words.

  What role does relational calculus

What role does relational calculus (or relational algebra) play in query optimization in a centralized relational database?

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd