1) (40 pts) Implement the the DFS algorithm. Use a text file (called input.txt) that contains an adjacency matrix to read-in data and create a…

 1) (40 pts) Implement the the DFS algorithm. Use a text file (called input.txt) that contains an adjacency         matrix to read-in data and create a directed graph to be searched. The matrix can be of any size. Row          elements in the input.txt file must be separated with commas. Example: 1,0,1,0,1,1 0,0,1,1,0,1 : 0,0,1,1,0,1 The output of your program should provide the order of visited nodes. In addition to source and         documentation, provide a text file, called REPORT.TXT, briefly describing how (i.e. data structures) and       what you have implemented (i.e. what works, what doesn’t). Tip

​ :​ Follow the suggested DFS data structure for the algorithm. Don’t improvise. 

 2. (60 points) Iterative Deepening was developed in the 70’s and combines the positive elements of DFS and         BFS. It is a simple, but a somewhat counter-intuitive idea: perform repeated depth-limited depth-first       3 searches, using an increasing depth limit, until a solution is found. It is counter-intuitive because each        repetition of a depth-limited DFS will wastefully repeat all the work done by previous repetitions.        However, in typical trees (not those that are very unbalanced), most of the nodes are in the bottom level,          so it does not matter much if the upper levels are visited multiple times since: number of nodes at depth k > number of nodes at depth k − 1 or less  

 This means that Iterative Deepening simulates BFS with linear space complexity. Assuming that a problem        with branching factor b and the goal node at depth k, time complexity is O(bk), and space complexity is          O(bk). Overall, the disadvantage of iterative deepening search is the painfully redundant, rechecking of       every node it has already checked with each new iteration. Implement Iterative Deepening. Provide the        source and a separate file for the input data. Use the same input and reading-in methods as you used on          the first question. Using the same text file REPORT.TXT, briefly describe how (i.e. data structures) and        what you have implemented (i.e. what works, what doesn’t) for this problem. 

3. Extra Credit: (15 pts – you must have correctly completed the other two problems to receive credit). Attempting to improve Iterative Deepening, one could provide the mechanism to “remember” what       nodes have already been seen, but this sacrifices the gained memory efficiency that made the algorithm        worthwhile. In addition, upon such improvement, nodes at the maximum level for one iteration will need        to be re-accessed and expanded in the following iteration. Implement this “improved” Iterative       Deepening. Provide the source and a separate file for the input data







Calculate Your Essay Price
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more

Order your essay today and save 10% with the coupon code: best10

Academic Pros