I'm indian-american, don't speak hindi. But somehow I was able to understand this whole video. Props to you young lad
@imranahmad38965 жыл бұрын
Thanks Sir, The concept you define about Depth First Search is really very nice. Now I will easily clear Algorithm Lab in my MCA 4th semester this time.
@adityachopra37595 жыл бұрын
"An infinite loop is only going to happen if the tree is having unlimited branches". Correct me if I'm wrong.
@bhavyaanand73638 ай бұрын
wrong
@onetrick7196 жыл бұрын
You're doing great effort. Only one suggestion, please mention *Time and Space* Complexity of each algorithm at the end of your video. Thank your.
@SS-fz6qt3 жыл бұрын
In artificial intelligence, searching or problem solving using DFS is a little bit changed as compared to DFS Traversal in Data Structures, in ARTIFICIAL INTELLIGENCE, DFS and BFS use Queue, and two lists OPENED(unvisited) and CLOSED(visited) are maintained, in DFS , ENQUEUE (Insertion) takes place at start , whereas ENQUEUE (Insertion) takes place at end in BFS. IT IS A HIMBLE ADVICE TO GO THROUGH ARTIFICIAL INTELLIGENCE BOOK GEORGE LUGAR, and STUART RUSSELL to clear your own concept before making videos for those students who even never got the book and rely on your videos. Thanks
@TechnicalBabaji16 жыл бұрын
You hv explain little wrong about dfs algorithm... In dfs what happen it will push all the children node.. and u know that stack implement LIFO so if A is not a goal node then BC will be pushed so B wil be in the top of stack and so on. But hv only push to B in the stack and what about C node..
@Surya-nc8lv6 жыл бұрын
This is not BFS where we traverse along each row. In DFS we go to the depth and if there no other possible nodes then we backtrack. so for the above problem in video the order we traverse will be ABDECFG
@yadneshkhode30916 жыл бұрын
Technical babaji chutiye
@zeeshanahmadkhalil89206 жыл бұрын
3:22
@rekhaattri39655 жыл бұрын
Why you did not use stack to explain your dfs example??
@krishnasiddhartha7 жыл бұрын
is iterative depth search and dLs same?
@m.Afreen226 жыл бұрын
No
@sidrarani47707 жыл бұрын
sir, Excuseme which one is more better in DFS nd BFS ??
@vidoclock87617 жыл бұрын
kzbin.info/www/bejne/bnTClnV7hrWNmLs WATCH THIS ONE
@yadneshkhode30916 жыл бұрын
Dfs....less space complexity
@KaleemUllah-qi7hf6 жыл бұрын
wow kia baat hy good ;n one but explain root left right i think its missing
@qayyumzakaria24706 жыл бұрын
Althought idk hindi but i can understand what he trying to explain c:
@safakozkan66987 жыл бұрын
What language is this in?
@hiteshbhatia83337 жыл бұрын
Hindi + English :)
@nandyhaaru92987 жыл бұрын
hindi
@aditya_das6 жыл бұрын
High Valyrian
@nika-bm8pb5 жыл бұрын
what is this language?
@ahsanali96465 жыл бұрын
Sir plz complete the output ABDEC??
@dls69235 жыл бұрын
ABDECFG
@DimagMindBuddhi6 жыл бұрын
What is pop a node
@unknownman14 жыл бұрын
deleting a node
@entertainmentpoint79656 жыл бұрын
Hi Sir, Can you please make video on expectimax algorithm
@ramandavid20476 жыл бұрын
sir convex hull kya hai plllzzzz bataaoo
@nehalansari95417 жыл бұрын
who to find solution cost in dfs
@malkitsingh77807 жыл бұрын
V nice and v helpful sir.
@WellAcademy7 жыл бұрын
Thank you so much
@gungunghatiya62857 жыл бұрын
but sir yah kya search karata hai
@AbdUllah-ru1yz6 жыл бұрын
Great job sir
@PradeepKumarIIITD5 жыл бұрын
arre pura cllege yahi h aaj
@pranjalsharma4995 жыл бұрын
very well said
@ramandavid20476 жыл бұрын
thanku sir and ap english kam use kre pllllzzz ya fr ap jo english me bolte hai vo hindi ya punjabi ma repeat krdea keje pllzz
@i_deepeshmeena5 жыл бұрын
punjabi m lol kal koi bolega bangali fir koi bolega telugu m
@akbarimomin43747 жыл бұрын
Plz tell me the complexity of DFS
@kamranhusain28297 жыл бұрын
O(V+E) V->no of vertices & E-> no of edges(if graph is directed)