Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can you help with building a C + + program for file comparison. That can be efficient and work with large files. requirements: 1 .

Can you help with building a C++ program for file comparison. That can be efficient and work with large files.
requirements:
1. the program should open two files that can ignore line breaks
2. the program should run through the files and identify difrences or if same
3. the program should print out the line and column for location purposes
4. the program should give error if one file is longer or shorter than the other file
5. the program should countinue running to countinue looking for diffrences if it encounters one
6. the program should print where the issue has appeared in the text
7. the program can countinue checking after the diffrence line of characters is presented unless there is a better way`
Example file 1(Is much more complex):
abc123abc123abc123abc123abc123abc123abc123abc123abc123abc123abc123abc123
Example file 2(Is much more complex):
abc123
abc123
abc123
abc123
abc123
abc123
abc123
abc123
abc123
abc123
abc123
abc123
Wanted output of program or something close to this:
if same:
file1.txt and file2.txt are identical.
-------------------------------------------------------
if diffrent:
file1.txt and file2.txt are diffrent.
Occurance 1:
file1.txt has an occurance at line: # column: #
Diffrence present in:
****************************************
^
file2.txt has an occurance at line: # column: #
Diffrence present in:
****************************************
^
-------------------------------------------------------
if diffrent:
file1.txt and file2.txt are diffrent.
Occurance 2:
file1.txt has an occurance at line: # column: #
Diffrence present in:
****************************************
^
file2.txt has an occurance at line: # column: #
Diffrence present in:
****************************************
^
-------------------------------------------------------
etc.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Mastering Big Data Interview 751 Comprehensive Questions And Expert Answers

Authors: Mr Bhanu Pratap Mahato

1st Edition

B0CLNT3NVD, 979-8865047216

More Books

Students also viewed these Databases questions