4.6 Optimal Binary Search Tree (Successful Search Only) - Dynamic Programming

  Рет қаралды 1,031,001

Abdul Bari

Abdul Bari

Күн бұрын

This problem is a partial, considering only successful search.
What is Binary Search Tree?
What is Optimal Binary Search Tree?
How to create Optimal Binary Search Tree by applying Dynamic Programming
PATREON : www.patreon.co...
Courses on Udemy
================
Java Programming
www.udemy.com/...
Data Structures using C and C++
www.udemy.com/...
C++ Programming
www.udemy.com/...

Пікірлер: 429
@raiakil
@raiakil 5 жыл бұрын
Abdul Sir, I work for Microsoft in Redmond Seattle. I have 15 years industry experience, but I have never seen such crisp explanation of DP. Chained Matrix mult and this one with OST, is one of the best explanation videos on KZbin ever,
@Akaash449
@Akaash449 2 жыл бұрын
Hi , I am Saptarshi Rudra from India. I have a passion for working at Microsoft and a good grasp over DS and Algo and years of Software Development experience. I would really love if someone like you recommend me for a Software Developer / Engineer position. I have applied for these positions for the past 2 months, but yet to receive any call. So I would be extremely grateful if you recommend me. My full name is Saptarshi Rudra. Thanks.
@ArvindKumar-fv6mv
@ArvindKumar-fv6mv 2 жыл бұрын
@@Akaash449 waste of time bro he might have changed his mail I'd so only no response
@anubhavpandey7682
@anubhavpandey7682 Жыл бұрын
he told the formula to fill the table after filling the table..all the time i was thinking how he is filling.....so how can you say this is best......
@atharvameher5880
@atharvameher5880 Жыл бұрын
@@Akaash449 Why do people wanna work in foreign I don't get it? You guys don't like it here? Proximity to family and friends don't matter to you?
@Akaash449
@Akaash449 Жыл бұрын
@@atharvameher5880 please inform yourself before rashly posting a comment. Microsoft, Google and Amazon have local offices in the country in many states. Where is even your statement coming from!!
@eddiesengola4491
@eddiesengola4491 6 жыл бұрын
You can see. He teaches with love, reveals everything that needs to be mastered. Thanks Abdul. You are the best.
@i.cipher2006
@i.cipher2006 3 жыл бұрын
enna sollu thaliva
@fenggeliu4241
@fenggeliu4241 5 жыл бұрын
For those who don't understand the formula here is an explanation. It took a while for me too. Everytime you try to add the nth node on to a tree with n - 1 nodes, you have to pick a root point k and k - 1 nodes on the left tree, n - k nodes on the right tree. k - 1 and n - k each as INDIVIDUAL TREE should already be calculated previously according to the table, so you just have to find where those are on the table which is at c[0, k - 1] and c[k, n] Look now we have the rank of 2 trees and 1 single root, to push the left or right tree into a sub tree you need add one level on each of their node therefore add the entire weight of the tree The combined tree with k as root have: Rank(k) = Rank(left) + Rank(left) + weight(left) + weight(right) + weight(root) = Rank(left) + Rank(right) + weight(0 - n) = c[0, k-1] + c[k, n] + w(0, n)
@debarunmukherjee9069
@debarunmukherjee9069 5 жыл бұрын
This is an application of knuth optimization for Dynamic Programming
@AKASHGUPTA4055
@AKASHGUPTA4055 5 жыл бұрын
Thanks!
@mfaraday4044
@mfaraday4044 4 жыл бұрын
nice bro but I did not understand anything.
@sanchitraina1346
@sanchitraina1346 4 жыл бұрын
@@mfaraday4044 😂🤙
@NileshwarShukla
@NileshwarShukla 4 жыл бұрын
Well explained :)
@chitnat
@chitnat 6 ай бұрын
For the recurrence relation, it would be more appropriate to write C[i, j] (for i < j) as the min {C[i, k-1] + C[k+1, j]} + w(i, j) where i
@anasjamal7206
@anasjamal7206 2 жыл бұрын
It's relatively impossible to not understand what you convey . You are a legend ❤️. For all concepts in DAA i watch your videos . First time when I watched your video on this concept i couldn't understand as I was bit hurried due to upcoming test in an hour .😁😁 But now here I am again for the second time , watching this concept and understanding it properly . Note : for those of you who don't understand Abdul Bari sir , maybe you need to be relaxed and give some time to the video without any hurry . This is specially for those who come here an hour before exam 😂.
@yogesh1478
@yogesh1478 2 жыл бұрын
tomorrow is my viva and i am here that makes u life saver thankuh so much sir
@sandeepkumar-ty3kt
@sandeepkumar-ty3kt 4 жыл бұрын
Formula = c[I,j]={c[I,k]+c[k+1,j]+weight} Where k values are C[0,3] then k values are 0,1,2 Then I=0 and j=3 Substitute the values C[0,0]+C[1,3]+12 Hope it helps
@naveen_kotha
@naveen_kotha 3 жыл бұрын
Why did u only took k=0,but k can be 1,2 also??
@poonawala2303
@poonawala2303 Жыл бұрын
@@naveen_kotha That was just a part of that example. Yes k can also be 1 and 2
@deepaksehrawat970
@deepaksehrawat970 Жыл бұрын
Thanks for formula
@piyushverma826
@piyushverma826 Жыл бұрын
i never hated any subject until i encountered Design and analysis of algorithms. also my university prof who makes the ppr so difficult and calculative.
@RoyalEXO_
@RoyalEXO_ 5 жыл бұрын
You are a life saver, sir! Honestly, you make this subject look so easy and fun! Hooked.
@HimanshuSharma-us1gz
@HimanshuSharma-us1gz 5 жыл бұрын
Sir I am from GGSIPU (Delhi), Today i hava ADA exam and I prepared only your videos, and kudos to your playlist thanku so much!
@ankushgarg2188
@ankushgarg2188 5 жыл бұрын
Kesa gya bhai ?
@HimanshuSharma-us1gz
@HimanshuSharma-us1gz 5 жыл бұрын
@@ankushgarg2188 Rula diya yaar, difficult exam aaya tha!
@HimanshuSharma-us1gz
@HimanshuSharma-us1gz 5 жыл бұрын
@@abdul_bari Sir 100%, these videos contains even more, thanks sir for replying, you are legend, and god for us!
@naziyafirdoussayyed8491
@naziyafirdoussayyed8491 5 жыл бұрын
@@abdul_bari Sir...ur videos are very helpful 😇 ur way of teaching, deep knowledge of the this subject 👏 Lots of love and huge respect 😇 From🇮🇳
@rb_honest
@rb_honest Жыл бұрын
Thank you, Sir 🙏
@abdul_bari
@abdul_bari Жыл бұрын
Dear, check the amount once. I think, it’s by mistake.
@Bitofmeforyou
@Bitofmeforyou 19 күн бұрын
Bro?? 8900?? Was it by mistake or what?👀
@coolone5561
@coolone5561 4 ай бұрын
Abdul Sir, I am a 5 year experienced Software Engineer. I have Google interview coming up on June 10th. So I started watching your algorithm videos and reached this lecture. Although I found this playlist very late after referring to a number of resources, your videos are very effective and easy to understand..
@helvosthecreator1920
@helvosthecreator1920 3 ай бұрын
How did you do?
@coolone5561
@coolone5561 3 ай бұрын
The technical rounds went well. The process is not complete yet. I will share the result soon.
@helvosthecreator1920
@helvosthecreator1920 3 ай бұрын
@@coolone5561 I hope you get it, good luck! 🍀💪
@harshitha.m.4189
@harshitha.m.4189 23 күн бұрын
@@coolone5561 how is it going its been 2 months
@softwareengineer8923
@softwareengineer8923 Жыл бұрын
In 6:35 it was actually 22.Also thanks for a great video!
@hassansyed5661
@hassansyed5661 5 жыл бұрын
You are a wonderful teacher. Thank you, so much for helping me to understand these concepts in an easy way.
@jaatharsh
@jaatharsh 4 жыл бұрын
Abdul Bari Sir (love) for ur passion to teach us, with every new video you raise the bar even higher, I cannot thank you enough for this, hope u always stay healthy & wealthy :)
@knoName5691
@knoName5691 6 жыл бұрын
I have gone through few video lectures of ur's sir..Very qualitative, easily understandable.. Thank you.. :-) Playlist is matching VTU syllabus..
@knoName5691
@knoName5691 6 жыл бұрын
+Abdul Bari Yeah sir.. Visvesvaraya Technological University.. Exams for my students will be in Jun-Jul
@iago8200
@iago8200 Жыл бұрын
You just saved my life in a Data Structure exam, thaks very much 😍😍😍
@Diana-np5so
@Diana-np5so 3 жыл бұрын
such an amazing explanation of optimal binary search trees!!! thank you so much for making this video!
@prashant7622
@prashant7622 4 жыл бұрын
before you start filling the matrix , please mention what is the behind filling like that ..for example.....telling that j-i=1 but what is the motive of doing that because when i will get a problem i will not start thinking like first i-j=1 then i-j=2 ..in fact i will start thinking it practically why i need to do that then converting it into matrix .l have seen you explaining like this before also . al though everytime i am able to figure out why it is needed bt still start with the motive why we need to proceed like that.
@gabrielmachado146
@gabrielmachado146 6 жыл бұрын
Sir, I have to thank you a lot for saving me. Great content and explanation! Please keep up the good work!
@lokeshagarwal6701
@lokeshagarwal6701 5 жыл бұрын
The video is like explaining the steps involved but i need the reason behind why we are doing ot in that way?
@rachanasingh2231
@rachanasingh2231 4 жыл бұрын
read the book h.cormen for why's of everything
@mohammedfalih8713
@mohammedfalih8713 3 жыл бұрын
Check leetcode site
@samkitjain2136
@samkitjain2136 3 жыл бұрын
true mann. he is just writing the steps involved
@ChandanG94805
@ChandanG94805 5 ай бұрын
I did'nt Understand this really
@aster22380
@aster22380 3 жыл бұрын
Great video so easy to understand , clear pronunciation and clear handwriting
@rajithaneerugatti4373
@rajithaneerugatti4373 4 жыл бұрын
Wt a teaching sir..... Really no one can say like u sir..... With out disturbance....super sirrr
@Maryam_Qureshi
@Maryam_Qureshi 2 жыл бұрын
@7:46 when he said: this is the optimal binary search tree! I made dua for this teacher.
@hrushikeshvazurkar
@hrushikeshvazurkar 4 жыл бұрын
Thank you Sir for the video. The effort you put in making these videos is really commendable.
@karthikadharmaraj1557
@karthikadharmaraj1557 6 жыл бұрын
I like ur way of teaching... Ur teaching is very clear sir about the topic
@fahadshajahan2554
@fahadshajahan2554 4 ай бұрын
Hemanth on fire 🔥🔥🔥
@marunkumar
@marunkumar 4 ай бұрын
😂
@niminijin9523
@niminijin9523 4 ай бұрын
😂
@donavarghese6273
@donavarghese6273 5 жыл бұрын
wonderfully taught. but u should have explained formula in the start and not revealed it at the end. that wud have made it better
@rufusmcgee4383
@rufusmcgee4383 6 ай бұрын
Totally agree, had me scratching my head the whole time.
@srinivaskari
@srinivaskari 3 ай бұрын
Sir you have explained the concepts so well.
@AmanSharma-me7ho
@AmanSharma-me7ho 5 жыл бұрын
Sir's explanation is great, i just love his explaining techniques.
@souravseal7262
@souravseal7262 5 жыл бұрын
a quick shortcut for exam or observation just add the corresponding element from the row and column u are supposed to find.... for example u want to find c[0,3]=(0,0)+(3,1),(0,1)+(3,2),(0,2)+(3,3) hope u found the pattern...
@ImSoumenMukherjee
@ImSoumenMukherjee 5 жыл бұрын
6:32 How it came 18?? It will be 22.. Right?
@pritomdasradheshyam2154
@pritomdasradheshyam2154 4 жыл бұрын
yeah even i was shocked, but I guess its a minor mistake
@Marina-pe1gx
@Marina-pe1gx 4 жыл бұрын
yeah, I was like wtf happened haha
@dvmanjunadh3258
@dvmanjunadh3258 4 жыл бұрын
yeah 15+3+4=22,Sir unexpectedly did a mistake.
@anirudhgrack7560
@anirudhgrack7560 3 жыл бұрын
Yaa right
@gogroot9745
@gogroot9745 5 жыл бұрын
Please clarify my query.. 1. when j-i =1 -> Here we calculated the cost for all the 4 keys (10, 20, 30 40) 2. when j-i =2 -> Why do we only take these 3 combination (10, 20) (20, 30) (30, 40) only ?? 3. As we already know to select 2 keys out for keys is 4C2 => 6 4. So why we dont consider (10, 40) (10, 30) (20 40) 5. |||y for 3 pairs and so on ?? Could you please clarify this point .. ?? Thanks in Advance..
@dr.vinodkumarchauhan3454
@dr.vinodkumarchauhan3454 6 жыл бұрын
Sir, first of all, thank you very much for the wonderful content. Sir, it looks like you have not covered some contents from Algorithms, which is generally part of the syllabus. So I request you to cover the following contents also: Lower-Bound Theory: Introduction to Algebraic problems, Introduction to lower bounds, Comparison Trees,Techniques for Algebraic problems, Some Lower Bounds on Parallel Computation
@dr.vinodkumarchauhan3454
@dr.vinodkumarchauhan3454 6 жыл бұрын
Thank you very much Sir.
@berylbose7006
@berylbose7006 6 жыл бұрын
Hi Sir, Really Informative, great use of examples . I am able to grasp the content so well.. Just a quick suggestion, could you also device the algorithm or pseudo-code at the end, to help us get a more generalized view on solving the problem.
@berylbose7006
@berylbose7006 6 жыл бұрын
Maybe next time. Or Sir u can add like a Part-2 for this video
@kasiiragavarapu673
@kasiiragavarapu673 Жыл бұрын
I observe one thing in the above problem that consider the frequencies in descending order and then form binary search tree. We get answer(you need cost then find the cost from tree)
@charmingpetal
@charmingpetal 4 ай бұрын
14:45 top moment, thank you
@syedmahasibali2324
@syedmahasibali2324 5 жыл бұрын
It's some what difficult problem to solve but this video made it easy for implementing
@syedmahasibali2324
@syedmahasibali2324 5 жыл бұрын
Yeah I saw it quite easier
@harekrishnamahto6512
@harekrishnamahto6512 6 жыл бұрын
I want to salute u sir for your efforts in making such amazing videos. It made all my concepts clear. Thank you sir
@rupalishirkande6163
@rupalishirkande6163 Жыл бұрын
Thank you sir it's a very understandable example 🙏🙏
@girrajjangid4681
@girrajjangid4681 2 жыл бұрын
We can also directly generate tree by taking max frequency key as an root.
@hushhhhhhhhhh
@hushhhhhhhhhh Жыл бұрын
Does this work all the time? Btw tq for that, 😅
@sashankyakkali3029
@sashankyakkali3029 6 жыл бұрын
ur videos r great sir...thank u for saving us...gitam students love u a lot
@kanni295
@kanni295 Жыл бұрын
If you are a faculty in our college we always rock in the exams Your lectures are Superb sir 👏👏👏👏👏👏👏🙏🙏🙏🙏
@yichizhang973
@yichizhang973 6 жыл бұрын
Your explanation is great, but I was kind of confused about the 9:05, when you conduct j-i, I do not understand the meaning of j-i, and the meaning of l, what that expression stands for? and why we use 1 represent 10, 2 represent 20 and so on, if we use 4 represent 10 ,it is a different story.
@aradhyajain9575
@aradhyajain9575 6 жыл бұрын
@14:45 how are you getting the values using formula.....and also please tell how u calculated it in brief? Sir.....thank you.....I am finding it very difficult to understand this part.
@P_S_PATIL
@P_S_PATIL 2 жыл бұрын
same problem
@P_S_PATIL
@P_S_PATIL 2 жыл бұрын
if any one knows pls replay
@MOHIT-rg8ge
@MOHIT-rg8ge 2 жыл бұрын
This is great video but in this video 6: 29 part of video is some mistake cost of 1st tree is 22 due to given frequency but you write 18
@paulz_san
@paulz_san 6 жыл бұрын
How many engineers out here, give a like.
@P_S_PATIL
@P_S_PATIL 2 жыл бұрын
first see the formla and then see it will be of great help 29:29
@nigarattar4079
@nigarattar4079 5 жыл бұрын
Nice explanation sir aapke sabhi videos bahot hi ache se samjh ate hain thanks
@souravkalal3831
@souravkalal3831 4 жыл бұрын
13:30...Formula is C[i,j]=C[i,k-1]+C[k,j]+w[i,j]... i and j value and weight.. u know..now value of K..😆😆 For value of k. 10 is 1st so key no. of 10 is..k=1... 20 is 2nd so key no. of 20 is.k=2.. 30 is 3rd so key no of 30 is..k=3.. 40 is 4th so key no of 40 is k=4.. ..Now to select k ..u have to take root node key no..if ur root node is 10 then k=1..if ur root node is 20 then k=2..so on.. C[0,2] that first 2 numbers.. 10 and 20.. C[i,j]=C[i,k-1]+C[k,j]+w[i,j] FOR 10..K=1.. C[0,2]={C[0,0]+c[1,2]}+w[0,2] =0+2+4+2 =8 FOR 20..K=2.. C[0,2]=C[0,1]+C[2,2]+w[i,j] =4+0+4+2 =10.. U know which one to select :)
@manasakuncham4547
@manasakuncham4547 6 жыл бұрын
sir,could you explain how to generate a tree from the data at the end?
@aniketnangare904
@aniketnangare904 10 ай бұрын
Your teaching is great sir
@Rakeshrajeev94
@Rakeshrajeev94 6 жыл бұрын
Sir, Thank you so much for the video. Best explanation I have seen. Expecting more videos.
@Dhanunjayp-fz5cj
@Dhanunjayp-fz5cj 5 жыл бұрын
6:32 answer is by adding the values 22
@haviof4420
@haviof4420 3 жыл бұрын
Ya i also noticed
@marinakulagina4711
@marinakulagina4711 2 жыл бұрын
A very good explanation. Thank you.
@roopa4610
@roopa4610 3 жыл бұрын
Your teaching is extremely awesome❤️ but I didn't understand how you split r[0,4] as r[0,2] and r[3,4] while writing tree
@girijayk811
@girijayk811 3 жыл бұрын
Me too same doubt if u understood let me know
@roopa4610
@roopa4610 3 жыл бұрын
@@girijayk811 even I didn't understand properly but what I thought was 26 was least ryt how did you get 26 it's by adding C[0,2] + C[3,4] + 15 therefore we will split r[0,4] as r[0,2] and r[3,4] and again we will split r[0,2] on the same basis..check what is the least number in r[0,2] then split those two... I tried my best to make you to understand 😃 if you still don't understand feel free to ask 😊
@MothukuriKavya
@MothukuriKavya 2 жыл бұрын
@@girijayk811 [0,4] means the keys which we take are 10,20,30,40 and when we draw trees for these keys we get different trees having root 10,20,30,40 so when we split c[0,4] to c[0,2],c[3,4] it is representing the trees which are having 30(whose frequency is 3) as root.
@karansunchanakota6624
@karansunchanakota6624 6 жыл бұрын
Explanation part was good, but as dint know the formula earlier it was a bit confusing in between...
@ritviknurchal5993
@ritviknurchal5993 5 жыл бұрын
sir the first one for frequenct check the count would be 22 not 18
@harishmax4236
@harishmax4236 2 жыл бұрын
Thank you sir, for your great explanation. 🙏🙏
@iiluffytaro4835
@iiluffytaro4835 Жыл бұрын
ABDUL BARI I LOVE YOU SO MUCH
@cipherwills7877
@cipherwills7877 6 жыл бұрын
You are truly a saviour, Tysm.
@techstudio9802
@techstudio9802 6 жыл бұрын
how you have chosen the child of r(0,4) are r(0,2) and r(3,4). plz explain
@aayushkumar5361
@aayushkumar5361 5 жыл бұрын
because as the matrix he created , the root for r(0,4) is 3...thus, k =3 here... so the child will become for c[i,j] ---> c[i,k-1] and c[k,j]
@abhirajsingh7005
@abhirajsingh7005 4 жыл бұрын
@@aayushkumar5361 thanks dude, saved my time!!!
@Hari-fb4dw
@Hari-fb4dw 5 ай бұрын
c[i,j]=min{c[i,k-1]+c[k,j]+w[i,j]} where k=i+1 to j and w=sum of frequencies
@vakhariyajay2224
@vakhariyajay2224 2 жыл бұрын
Thank you very much. You are a genius. 👍👍🔝🔝🙏🙏👌👌
@amirhosseinmovahedi507
@amirhosseinmovahedi507 Жыл бұрын
just wow! it was great...
@shaikparveen5312
@shaikparveen5312 3 жыл бұрын
Sir which books you have referred to gain this much knowledge ❤️
@abhinashjena216
@abhinashjena216 Жыл бұрын
We love you ❤😊, sir
@ruturajkadam5164
@ruturajkadam5164 Жыл бұрын
for those who are confused about the formula he has given the formula at the last of the video
@sgsolutions1682
@sgsolutions1682 Жыл бұрын
Very good teaching 😊
@sreekarshesham1505
@sreekarshesham1505 5 жыл бұрын
how come 15+3+4=18 iy is 22 right????
@basharatafghan8121
@basharatafghan8121 2 жыл бұрын
Thank u sir but if you check the calculation problem on this 6:29
@oppalinfo
@oppalinfo 6 жыл бұрын
f(n) = 16n3 +10 n log n and g(n) = 8758 n2 log n + 9248 n2 Sir, which function has greater value f(n) or g(n)
@dheerajkafaltia8474
@dheerajkafaltia8474 5 жыл бұрын
Very confusing, but watching till end made it clear
@dheerajkafaltia8474
@dheerajkafaltia8474 5 жыл бұрын
Ok sir, got it :-)
@yifanwu5277
@yifanwu5277 5 жыл бұрын
great video! Explain things so well!
@ryanstobbe864
@ryanstobbe864 6 жыл бұрын
This is the best explanation I have found on You tube thanks
@likhithakande2902
@likhithakande2902 3 жыл бұрын
Sir , I had a dought that what if the values of q1,q2 .....are not given 🤔🤔🤔🤔🤔🤔🤔🤔
@pradipnitw
@pradipnitw 6 жыл бұрын
this video is little confusing to me. it is not clear to me , how are we getting the formulas. But as an alternate solution, we could have sorted the input as per the frequency and then inserted one by one into a BST ?
@jeyanthileela1727
@jeyanthileela1727 6 жыл бұрын
pradip biswas i got same prblm little bit confusion how to make formula 😇
@AJEETKUMAR-im3qi
@AJEETKUMAR-im3qi 6 жыл бұрын
its not clear through video without formula ..... it might better if you wrote that before applying
@trishalarora6619
@trishalarora6619 5 жыл бұрын
See when u r watching this for first time, the formula used can be confusing, so either u try to think on your own, that what the formula can be, based on observations or simply skip to the end at 29:30 and note the formula and then understand. But I won't prefer latter way as it the essence of dynamic programming is to find a formula. So don't do this unless you are absolutely clueless.
@Afzalkhan-yw8eu
@Afzalkhan-yw8eu 3 жыл бұрын
Big Thanks sir ......you are awesome.
@caseybriones1085
@caseybriones1085 4 жыл бұрын
why 2nCn / n + 1 = 5? Please help
@recensionem
@recensionem 2 жыл бұрын
It's (2n)Cn/(n+1) or (2n)!/(n!*(n+1)! and you get 6C3/4 = 5
@suchitha_
@suchitha_ 2 ай бұрын
​@@recensionemthanks!!
@tanusharma3874
@tanusharma3874 6 жыл бұрын
Very well explaind thank you sir ... and it is easy to understand also i like your way of explaining sir i have a daubts in multistage
@mynameisGYAN
@mynameisGYAN 4 жыл бұрын
He did not explain the formula, and in his mind agreed that everyone must have understood.
@kshitijakulkarni8292
@kshitijakulkarni8292 6 жыл бұрын
This video is very helpful..Thank you so much sir.It is really easy to understand..
@akash.manna.
@akash.manna. 6 ай бұрын
Please upload videos on Approximation algorithm and randomized algorithm. 🙏
@yamunahanumanthu6254
@yamunahanumanthu6254 5 жыл бұрын
Thank u so much sir. How c(0,0) in the first step i didn't understand
@AnubhavSingh-sb7xw
@AnubhavSingh-sb7xw 6 жыл бұрын
cost of 1st tree will be 22 (3x1 + 2x2 + 5x3) not 18
@manaspurohit3123
@manaspurohit3123 3 жыл бұрын
you are just showing the method, but not why it is done so..
@DeepteshLovesTECH
@DeepteshLovesTECH 6 жыл бұрын
Excuse sir! First of all great explanation but I didn't understand the last part where you construct the tree. I'm unable to understand the way you are diving the branches.
@sanketkhedkar6880
@sanketkhedkar6880 4 ай бұрын
The video discusses the concept of an optimal binary search tree, where the keys have different search frequencies. The dynamic programming approach is used to find the optimal tree organization that minimizes the total search cost. Key moments: 00:00 Binary search trees are efficient for searching keys with a time complexity of log n. Different binary search trees can be formed for a given set of keys, impacting the search cost. -Binary search trees provide efficient key searching with a time complexity of log n, based on the tree height. -Different binary search trees can be formed for a set of keys, affecting the number of comparisons needed for key search, leading to a balanced binary search tree. -Optimal binary search trees consider the frequency of key searches, prioritizing more frequently searched keys, impacting the overall search efficiency. 06:04 The video discusses optimizing binary search trees based on key frequencies. Dynamic programming is used to find the optimal organization for keys with different frequencies. -Explanation of how to determine the optimal binary search tree organization based on key frequencies using dynamic programming. -Detailed step-by-step process of filling values in a table to calculate the cost of different binary search tree organizations. 12:43 The video explains a process of finding the minimum cost of forming a binary search tree using dynamic programming and frequency values. It demonstrates selecting keys, calculating costs, and determining the optimal arrangement of keys. -Demonstrating the calculation of costs and comparisons for different key selections in forming a binary search tree. -Exploring the process of selecting keys and frequencies to determine the optimal arrangement for minimizing the cost of the binary search tree. -Illustrating the expansion of the process to consider three keys at a time to further optimize the arrangement and minimize the cost of the binary search tree. 19:18 The video discusses the concept of finding the optimal cost of a binary search tree using a formula based on frequencies and weights of keys. It demonstrates the calculation process step by step. -Calculation of optimal cost for different key possibilities using a formula based on frequencies and weights. -Determining the root key for optimal cost calculation and selecting the minimum cost among different possibilities. -Expanding the analysis to consider more keys and calculating the optimal cost for a larger set of keys in a binary search tree. 27:40 The video explains the concept of an optimal binary search tree using a formula to minimize the cost of searching based on frequency. It demonstrates how to apply the formula for optimal tree construction. -Explanation of the concept of an optimal binary search tree and its importance in minimizing search costs based on frequency of search. -Demonstration of the formula for constructing an optimal binary search tree to minimize search costs and how to apply it effectively.
@helloworld3042
@helloworld3042 6 жыл бұрын
Nice explaining sir
@BanothAnusha-hv4qn
@BanothAnusha-hv4qn 6 ай бұрын
thank you sir for your better techer thank you a lot sir
@mpmukundh
@mpmukundh 5 жыл бұрын
Sir please explain with algorithm
@naklecha
@naklecha 5 жыл бұрын
Thanks for telling us how the formula works :)))))))
@sanketsultan2348
@sanketsultan2348 5 жыл бұрын
sir how you take r(0,2),r(3,4) as child of 3?
@aayushiverma2796
@aayushiverma2796 3 жыл бұрын
yes sir, why did we do that?! Please answer ASAP. I have test tom for this!!!!!!!!!!!!!
@kaizoku712
@kaizoku712 Жыл бұрын
For this to work keys should be in sorted order or not?
@aradhyajain9575
@aradhyajain9575 6 жыл бұрын
Sir, why are we adding the weight of all the keys in the formula?.....How is it related to the formula and the BST if we consider 2 nodes BST or 3 nodes BST?
@VincePetRok
@VincePetRok 6 жыл бұрын
Since you aren't considering the "zeroth" level when you split the tree into left and right subtrees (C[i, k-1] on the left and C[k, j] on the right), you need to add the frequency for each node at the end.
@ryanp9441
@ryanp9441 5 жыл бұрын
Thank you so much for the explanation! It helped me a lot!
@naklecha
@naklecha 5 жыл бұрын
Ideal speed for 2x speed
@meimei1572
@meimei1572 4 жыл бұрын
I would've given up my final exams if you were not here.
4.3 Matrix Chain Multiplication - Dynamic Programming
23:00
Abdul Bari
Рет қаралды 1,6 МЛН
Un coup venu de l’espace 😂😂😂
00:19
Nicocapone
Рет қаралды 6 МЛН
Help Me Celebrate! 😍🙏
00:35
Alan Chikin Chow
Рет қаралды 71 МЛН
Incredible: Teacher builds airplane to teach kids behavior! #shorts
00:32
Fabiosa Stories
Рет қаралды 12 МЛН
Spongebob ate Michael Jackson 😱 #meme #spongebob #gmod
00:14
Mr. LoLo
Рет қаралды 11 МЛН
10.1 AVL Tree - Insertion and Rotations
43:08
Abdul Bari
Рет қаралды 1,2 МЛН
Optimal Binary Search Tree
10:55
Tushar Roy - Coding Made Simple
Рет қаралды 322 М.
4.5 0/1 Knapsack - Two Methods - Dynamic Programming
28:24
Abdul Bari
Рет қаралды 2,8 МЛН
Top 7 Algorithms for Coding Interviews Explained SIMPLY
21:22
Codebagel
Рет қаралды 403 М.
3.4 Huffman Coding - Greedy Method
17:44
Abdul Bari
Рет қаралды 1,6 МЛН
6.1 N Queens Problem using Backtracking
13:41
Abdul Bari
Рет қаралды 2 МЛН
Un coup venu de l’espace 😂😂😂
00:19
Nicocapone
Рет қаралды 6 МЛН