Implement Trie (Prefix Tree) | Microsoft | Leetcode - 208

preview_player
Показать описание
This is the 2nd Video of our Trie Playlist.
In this video we will try to solve the problem which is the core of TRIE Data Structure
"Implement Trie (Prefix Tree)" (Leetcode - 208).

We will do live coding after explanation and see if we are able to pass all the test cases.

Problem Name : Implement Trie (Prefix Tree)
Company Tags : GOOGLE

╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝
#coding #helpajobseeker #easyrecipes #leetcode #leetcodequestionandanswers #leetcodesolution #leetcodedailychallenge #leetcodequestions #leetcodechallenge #hindi #india #hindiexplanation #hindiexplained #easyexplaination #interview #interviewtips
#interviewpreparation #interview_ds_algo #hinglish
Рекомендации по теме
Комментарии
Автор

Oh my god the way you just explain is mind blowing. I have watched a lot of vedios, but the I can't explain how u teach it's just a blessing, watched like stiver, love babbar vedio but ur just mind blowing 🙃thx a lot ❤❤

Ramneet
Автор

Legend ho bhai tum. Itni clarity kisi channel me nahi dekhi maine aaj tak

FanIQQuiz
Автор

I actually was able to code it up myself the moment your explanation ended ❣
I can't thank you enough man.

souravjoshi
Автор

Super Easy explanation, I am able to implement TRIE just by watching your video only once. Prior to this, Trie Data Structure was scary to me. But now, it became one of my favorite data structure. Thank you so much for your quality content.❤💯💯💥

OnlyUpscOrBpsc
Автор

“Never thought, Trie would be so easy” ✨

zainabnoor
Автор

You are one of the finest YouTubers out there.
I still can't believe I am now able to understand complex DS like Graph and Trie.
Thank to you bro

souravjoshi
Автор

I was always afraid of this topic and always skipped this topic, but now while preparing for my microsoft interview I am watching your videos and found this very helpul thank you so much .

aswithasai
Автор

Khatarnak Explanation😍, You made it so easy and simple

pritishpattnaik
Автор

I have my Google interview in 2 weeks and your videos are a blessing to me bro!!!
God bless you and keep doing this!!

proballer
Автор

This is perfect, Only thing is we do not need to write I seprately for startWith function we can do it easly without it.

bool startsWith(string prefix) {
TrieNode* ptr = root;
for(char& ch : prefix) {
int idx = ch - 'a';
if(ptr->children[idx] == nullptr) {
return false;
}
ptr = ptr->children[idx];
}
return true;
}

Abhishek-yij
Автор

You are a MAGICIAN. No one can teach like you

gui-codes
Автор

That's a slap to Trie 😆
Made it a cake walk. Cool way to teach. Thanks

wearevacationuncoverers
Автор

Bhaiya jab yeh video upload hua tha tab TRIE se dar sa lagta tha(as it was new to me), par kaafi time baad man ko mana liya aur poori video dekha tab dar chala gya.
Thanks a ton & please add me to your linkedin group.

molyoxide
Автор

Thank you mik for such a great explanation - Day 1 of solving problems in Dec

heyOrca
Автор

Excellent and Simply Explained .. thanx a Lot❤‍🔥

manish_mnnit
Автор

Bhaiya please we need more videos on trie … impact not just trie we want on very topics ❤️❤️❤️❤️ love u

HealthyOm
Автор

Can you please share the entire trie playlist

aryangupta
Автор

bhaiya please delete wale pe ek video bana do, ye concept aapne bahut easily samjaya hai...🙂👌👌

tarunpatel
Автор

dope . you are amazing man. fear of trie is gone

EB-otuu
Автор

thanks for sharing this. You made it so easy.

rahulkapoor