Solved Homework: Question: Write a recursive method that counts the number of mines on a grid. A mine is defined as a contig…

Write a recursive method that counts the number of mines on a grid. A mine is defined as a contiguous collection of X’s (connected horizontally and vertically). In java language

Input

Max dimensions of the array

Distribution of mines on the array

Output

The number of mines and the layout of the grid showing the locations of the mines.

Requirements checklist:

❑ Documented source code (include any assumptions you make)

Input File (in.txt)

The format of the input file is as follows: First line is the dimensions of the grid.. Then the grid containing 1s for the creatures and 0s for the spaces. The file terminates by 0 0.

5 5

…..

.XXX.

…..

…..

…..

5 5

….X

.XXX.

X….

…..

…..

0 0

Output File (out.txt)

Experiment # 1

Number of Mines: 1

0 0 0 0 0

0 1 1 1 0

0 0 0 0 0

0 0 0 0 0

0 0 0 0 0

Experiment #2

Number of Mines: 3

0 0 0 0 1

0 2 2 2 0

3 0 0 0 0

0 0 0 0 0

0 0 0 0 0

Marking Scheme

Out of

Grade

Comments

Documentation

3

Meaningful variable names

2

Correct input format

2

Correct output format

2

Modularity

4

Tested

12

Total

25

Expert Answer

answers

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileWriter;

import java.io.IOException;

import java.util.Scanner;

public class Mine {

public static void main(String[] args) throws IOException {

//for reading

File file =

new File(“D:\mine.txt”);

Scanner sc = null;

//For writing

FileWriter writer =null;

try {

//To scan the file

writer = new FileWriter(“D:\out.txt”, true);

sc = new Scanner(file);

} catch (Exception e) {

e.printStackTrace();

}

int l=0;

//reading line from input file

while(sc.hasNextLine()){

l++;

int m=0;

String[] data=sc.nextLine().split(” “);

int row=Integer.parseInt(data[0]);

int col=Integer.parseInt(data[1]);

int [][] result=new int[row][col];

int i=0,j=0;

//reading mine rows

while(i<row){

j=0;

boolean flag=true;

String line=sc.nextLine();

//reading mine columns

while(j<col){

char value=line.charAt(j);

if(value==’X’){

if(flag){

m++;

flag=false;

}

result[i][j]=m;

}else{

result[i][j]=0;

}

j++;

}

i++;

}

//writing in out.txt if row > 0

if(row!=0){

writer.write(“Experiment # “+l);

writer.write(“rn”);

writer.write(“Number of Mines:”+m);

writer.write(“rn”);

for(int temp[]:result){

for(int temp1:temp){

writer.write(temp1+” “);

}

writer.write(“rn”);

}

}

}

writer.close();

}

}

workspace-lava Eile Edit Source Refactor Navigate Search Project un Window Help Eclipse Quick Access 慍package Explorer X ES p▽-a Main.Java D calculateScore Java Hote·java J javadQuestion-Java T MinejavaX flag-false; result[i][j]-m; out Notepad File Edit Format View Help Experiment # 1 Number of Mines:1 0 1 1 1 0 Experiment # 2 Number of Mines:3 0 0 0 8 1 0 2 2 2 0 3 0 0 0 8 12:02 Type here to search 恤脈40) 03-11-2018

Buy Essay
Calculate your paper price
Pages (550 words)
Approximate price: -

Help Me Write My Essay - Reasons:

Best Online Essay Writing Service

We strive to give our customers the best online essay writing experience. We Make sure essays are submitted on time and all the instructions are followed.

Our Writers are Experienced and Professional

Our essay writing service is founded on professional writers who are on stand by to help you any time.

Free Revision Fo all Essays

Sometimes you may require our writers to add on a point to make your essay as customised as possible, we will give you unlimited times to do this. And we will do it for free.

Timely Essay(s)

We understand the frustrations that comes with late essays and our writers are extra careful to not violate this term. Our support team is always engauging our writers to help you have your essay ahead of time.

Customised Essays &100% Confidential

Our Online writing Service has zero torelance for plagiarised papers. We have plagiarism checking tool that generate plagiarism reports just to make sure you are satisfied.

24/7 Customer Support

Our agents are ready to help you around the clock. Please feel free to reach out and enquire about anything.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

HOW OUR ONLINE ESSAY WRITING SERVICE WORKS

Let us write that nagging essay.

STEP 1

Submit Your Essay/Homework Instructions

By clicking on the "PLACE ORDER" button, tell us your requires. Be precise for an accurate customised essay. You may also upload any reading materials where applicable.

STEP 2

Pick A & Writer

Our ordering form will provide you with a list of writers and their feedbacks. At step 2, its time select a writer. Our online agents are on stand by to help you just in case.

STEP 3

Editing (OUR PART)

At this stage, our editor will go through your essay and make sure your writer did meet all the instructions.

STEP 4

Receive your Paper

After Editing, your paper will be sent to you via email.

× How can I help you?