Your Perfect Assignment is Just a Click Away

We Write Custom Academic Papers

100% Original, Plagiarism Free, Customized to your instructions!

glass
pen
clip
papers
heaphones

Programming Assignment #1

Programming Assignment #1

Question Description

Important Design Requirement:

Your design must be based on Modularity and “Separation of Concerns”.

The Stack and Queue Data Structure implementations must be based on “Information Hiding” and “Encapsulation”.

The Application Code (e.g. Rat In Maze, Wire Router, Image Component Labeling, …) know about the Data Structures only through their Interfaces (APIs).

Remember that interfaces represent behavior, while classes represent implementation.

Related Resources:

You do not have to use the following C++ code. In fact, it is probably better to develop your own code by adapting the given code, rather than using it “as is”, because this code has a long chain of dependencies (#include files). So, please use at your own discretion, the given code is only intended to help you get started with ideas, not with code.

starting code is here:

/*

* Image Component Labeling

* Project 1

* < Your Name >

* < Date >

*

* Purpose and usage of this application

* . . .

* . . .

*

*/

// . . .

// . . .

// . . .

// global variables

/*

* pixel should be redesigned as an object, instead of int, with two

fields,

* as described in the Assignment Specification document

*/

int **pixel;

int size; // number of rows and columns in the image

// functions

void welcome()

{

// Optional code goes here

}

void inputImage()

{// Input the image.

cout << “Enter image size” << endl;

cin >> size;

// create and input the pixel array

make2dArray(pixel, size + 2, size + 2);

cout << “Enter the pixel array in row-major order” << endl;

/*

* Either ask user for input grid or generate random numbers (zeros

and ones)

*/

for (int i = 1; i <= size; i++)

for (int j = 1; j <= size; j++)

cin >> pixel[i][j];

}

void labelComponents()

{// Label the components.

// initialize offsets

position offset[4];

offset[0].row = 0; offset[0].col = 1; // right

offset[1].row = 1; offset[1].col = 0; // down

offset[2].row = 0; offset[2].col = -1; // left

offset[3].row = -1; offset[3].col = 0; // up

// initialize wall of 0 pixels

for (int i = 0; i <= size + 1; i++)

{

// Your code goes here

}

int numOfNbrs = 4; // neighbors of a pixel position

// scan all pixels labeling components

arrayQueue<position> q;

position here, nbr;

int id = 1; // component id

for (int r = 1; r <= size; r++) // row r of image

for (int c = 1; c <= size; c++) // column c of image

if (pixel[r][c] == 1)

{

/*

* New image Component

*

* Your code goes here

*/

} // end of if, for c, and for r

}

void outputImage()

{// Output labeled image.

cout << “The labeled image is” << endl;

for (int i = 1; i <= size; i++)

{

for (int j = 1; j <= size; j++)

cout << pixel[i][j] << ” “;

cout << endl;

}

}

void main()

{

welcome();

inputImage();

labelComponents();

outputImage();

}

Order Solution Now

Our Service Charter

1. Professional & Expert Writers: Course Elite only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Course Elite are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Course Elite is known for timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Course Elite, we have put in place a team of experts who answer all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.