Write a python function called dfs

Assignment Help Python Programming
Reference no: EM132870489

Task

In this practice, we will implement the Breadth First Search and Depth First Search Algorithms.

i) First, we want a structure to represent the graph. We are going to use the adjacency list representation for graph. We are going to declare a dictionary G to represent the graph and the keys in the dictionary are going to be the nodes in the graph. The values associated with a key is a list of vertices that are adjacent to the vertex specified in the key. For example, if we have the following graph the dictionary is going to be, G = {‘P': [‘Q','R'], ‘Q': [‘P','R'], ‘R': [‘P','Q']}

2070_figure.jpg

Note: While defining your graph like this if there is no adjacent node then you need to have an empty list
ii) We discussed about the BFS algorithm in class. Write a python function called BFS that takes graph and the starting vertex, and returns a BFS order (as a list) of the graph.

Note:
a. Create a list to store the visited vertices. The BFS function returns this list.
b. The BFS algorithm uses a Queue and a Set. We will use python list and set data types to implement these data structures. Select the right methods for list so the you can mimic the behavior of a queue.

iii) We also discussed about the DFS algorithm in class. Write a python function called DFS that takes the graph and the starting vertex, and returns a DFS order (as a list) of the graph.

Note:
a. Create a list to store the visited vertices. The function returns this list.
b. The DFS algorithm uses a Stack and a Set. We will use python list and set data types to implement these data structures. Select the right methods for list so the you can mimic the behavior of a stack.

iv) Write a main function, and create the following graph

258_figure1.jpg

v) Call the BFS and DFS function to print the BFS and DFS orders of the graphs.

vi) Device an algorithm also to detect a cycle in a graph. For example, the graph above has a cycle (A-B-E-F-C-A). Write a function cycle_detect that takes a graph as input and returns true if there is a cycle and false otherwise.

Reference no: EM132870489

Questions Cloud

Should the statute of limitations be waived for such crimes : Should the statute of limitations be waived for such crimes? Pertaining to the statute of limitations for victims of sexual abuse, namely those involving.
What the ending balance in retained earnings : Net income for the current year was $122,000 and cash dividends of $8,500 were paid. The ending balance in retained earnings equals
Summarize the constitutional basis for criminal procedure : Explain the exclusionary rule and the exceptions to it. Likewise, summarize the fruit of the poisonous tree doctrine and the exceptions to it.
What the roles of the financial manager : What the roles of the Financial Manager? What are the functions of money? Who is a Financial Manager?
Write a python function called dfs : Write a python function called DFS that takes the graph and the starting vertex, and returns a DFS order (as a list) of the graph
What does say about society and the criminal justice system : What does say about society and the Criminal Justice System? The "safe haven law", discuss how significantly that could have altered Deegan's life.
What crimes each person may be charged with : What crimes each person may be charged with and which defenses might be available to each person. Make sure your support your response with legal reasoning
Identify major crime trends and patterns in the united state : Are the rates going up or down? That is, what are the trends? How does your state's rate compare with the national rate? What are causes/patterns of homicide
How have statistic been used effectively by criminal justice : How have statistics been used effectively by criminal justice professionals? Provide recommendation for more effective use and incorporation by criminal justice

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd