Data Structures: Stacks and Queues

preview_player
Показать описание
Learn the difference between linear data structures stacks and queues. This video is a part of HackerRank's Cracking The Coding Interview Tutorial with Gayle Laakmann McDowell.
Рекомендации по теме
Комментарии
Автор

You explained this better in 5 mins, than my professor could in 2 hours! Thank you so much!

enjoyinglife
Автор

It is funny when you get a pretty good foundation in your intro to comp sci courses how easily it is to understand these data structures. Then again, Gayle is an amazing teacher! Not a luxury we all get with college, lol.

tannerbarcelos
Автор

awesome vid. you are the first person who has really explained the coding of this algorithm in a manner i actually understood.

martinmtandi
Автор

Thank you very much ma'am. Stacks and Queue's have been stressing me out for the longest, but now I have actually taken the time to sit down and understand them and they are actually fairly simple, at the mention of pointers, I used to tremble, but now I realise that I have got nothing to fear at all!

tan
Автор

Thank you so much ma'am! You're an inspiration for new tutors like me🙏💙💙💙

CSEconceptswithParinita
Автор

Your videos are always so straight-foward!

frankchen
Автор

this is true coding. you helped me understanding sta
cks

englotv
Автор

Greate video!
One suggestion - When implementing a Stack, it makes more sense to call the Node's pointer "prev" than "next", because logically it doesn't point to the one that comes after him :)

hilapartuk
Автор

Thanks for this, you made the code seem so much simpler

deli
Автор

can you suggest me a title for a project which uses data structure in c. I need a project which uses link list/ stack / queues

joyalmeida
Автор

This series of Data Structures is great! Succinct, clear, and to the point. I only wished they used C++ since I got a final of it coming up :D

rumelia
Автор

Currently working on a class project where we can choose to either do stack or queue, which one would be better implement/ use. Stacks or Queues?

robertbonham
Автор

does it make sense that node is a static class, since we're making instances of the node with different data ?

kataya
Автор

Where do you think it would be applicable to use them in some certain programs?

danielabengona
Автор

Thanks for these easy videos to undertand.

theSDE
Автор

How did you add first tail? If(head == null){ head = node; tail ?}

shibinfrancis
Автор

Sometimes i wonder how many subscribers did you get after these wonderful lectures??

hasansakib
Автор

I see so many tutorials for coding using this same doodling/animation software, but I don't recognise it. What is it?

silvershocknicktail
Автор

very well understood.Thanks mam from India 🇮🇳

mohdbilal
Автор

Can anyone explain at 3:33, in the remove method, why the tail need to be set to null after updating/removing the head? L36.

luiscarlosquesadasequeira