Fix: In the third implementation, I forgot to add the attribute ch that holds the node's character
@DevendraSingh-oq2re2 жыл бұрын
I am c++ user. But You explained it so clearly even python code make a whole lot of sense now. Great Man Keep uploading content.
@kirillzlobin7135 Жыл бұрын
Very good quality of the presentation. Thank you very much for your job
@abhinavmeda50423 жыл бұрын
I think tries are nicely implemented with dictionaries
@mybuddy113 жыл бұрын
you are number one in the world of us, i really the way which you using illustrating images, thank you very much, i hope you will make a course about graph algorithm and advanced data structure on udemy
@insidecode3 жыл бұрын
Thanks a lot for your comment!
@neelakshisoni6118 Жыл бұрын
@congminh7835 have u taken his course on udemy
@someoneunknown27203 жыл бұрын
Loved the explanation and got a good grasp in this data structure. Thanks 😊😊. I regularly watch your videos and they are awesome. I am stuck in binary tree probelm . Leetcode problem 654 . Maximum binary tree . Can you help me solve that problem or can you make your next video in that . Please . 🥺 Thanks 🥰🥰😍
@haidaribo62433 жыл бұрын
Amazing explanation, but in the get_strings() method you typed: return words... I think you meant strings, right?
@insidecode3 жыл бұрын
yes yes small mistake
@Md_sadiq_Md7 ай бұрын
Seing it on Ramadan Eid Mubarak ✨
@rsKayiira6 ай бұрын
excellent presentation thank you
@eldoradoarts5633 жыл бұрын
u are just crazy bro . how do you animate these kind of videos which application you use .
@insidecode3 жыл бұрын
I work with PowerPoint
@true_khrisna3 жыл бұрын
Like the animation explanation. Did you use manim to make this animation?
@insidecode3 жыл бұрын
Thanks! No I used PowerPoint
@TheDarkOne6293 жыл бұрын
Hi. Maybe I'm wrong, but shouldn't the 3rd implementation have a List[Tuple[str, Trie]] as children? Thanks for the video. It explained everything my professor couldn't. :)
@insidecode3 жыл бұрын
No but I forgot the attribute ch in the class definition so yes something is missing, thanks for telling me And yore welcome for the video
@AyuJessieM2 жыл бұрын
What a great explanation! thank you very much. I would like to ask a question, there's a code that I still not understand in the "Insert" Part (minute 6:07) , which is : node = node.children[ch] I thought [ch] is an Index, which might suppose to be a number. but I also thought that the value of variable "ch" is a single character of each string we have, for example : string = "apple" then the value of ch is : ch = ["a", "p", "p", "l", "e"] so if we use ch for index, it would be : node = node.children[p] and perhaps the index supposed to be : node = node.children[2] My assumption might be wrong, would you mind explaining it to me Thank you very much :)
@insidecode2 жыл бұрын
node.children is not an array, it's a hash table. And keys in a hash table can be something other than an integer, a character for example
@AyuJessieM2 жыл бұрын
@@insidecode Alright, Thank you very much for your answer :)
@pokortec97733 жыл бұрын
Thanks for sharing this.
@insidecode3 жыл бұрын
You're welcome!
@aryanpandey287910 ай бұрын
Where is the next video?
@subee1286 ай бұрын
Thanks
@kmishy2 жыл бұрын
I also want to do this level of animation. Can you please share how do you do?
@insidecode2 жыл бұрын
For my case I use PowerPoint, so you should be comfortable with it
@kmishy2 жыл бұрын
@@insidecode you are doing hard work ❤️
@goldfishdoc19992 жыл бұрын
Wow!! Thank you
@insidecode2 жыл бұрын
You're welcome!
@dahomosapien Жыл бұрын
Does anyone know how to do this same delete code but in C?