Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

In computer science, recursion is described as a function or method that calls i

ID: 3706196 • Letter: I

Question

In computer science, recursion is described as a function or method that calls itself. It often involves a series of numbers or a linked list, and requires a terminal condition. Common examples of recursive algorithms can be found when calculating factorials or exponents, or when traversing a tree structure.

Write a command line program (in Windows) to find names of files and directories that match a specified pattern.

1. The program must be called walker.exe.

2. The program must take two command line arguments – one for the starting directory, and the other as a regular expression describing the pattern that must be matched by the name of the directory or file.

3. The output of the program should display all the directory and file names that match the search expression.

a. If there is nothing that matched, you should state, “No file or directory found.”

b. For each directory found, display the full directory path, each on a separate line.

c. For each file found, display the full file path, each on a separate line.

4. To walk the directory structure, a recursive algorithm must be used.'

Should be written in C or C++.

This is all the instruction that was given. Thanks.

Explanation / Answer

Return;

if ( (argv[0] = '') || (argv[1] = '') )

Return;

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote