"Stack level too deep!"
Stacks and queues are all around us. In this video we break down what they are, how they work, and their place in every day software development.
For more on Stacks and queues, check out this post:
To Queue Or Not To Queue
Vaidehi Joshi ・ Feb 14 '17
#backgroundjobs
#queues
#computerscience
#datastructures
If you have questions or comments, please feel free to share below.
Top comments (17)
Wonderful!
Loving this series! I'm a visual learner so this style is just perfect for me!
Great video, really appreciated the illustrations 👌🏾
Really great videos! Even though I'm well familiar with these concepts, it was a good reminder, and I have half a page of notes for expanding and improving my company's high-efficiency implementations.
I took CS in university, but I'm really enjoying this series. It's so well done. I love your drawings. They really help the concepts sink in for viewers. Looking forward to the next one. Keep up the great work Vaidehi!
Awesome video!
Wonderful episode. Welcome back Vaidehi!
Awesome, Thank you!
Thanks 🙏 vaidehi joshi ...really appreciating for helping to learn and giving confident on understanding i can do it👩🏻🎓☺️
Hey, when you say an Array is a static Data Structure, I understand, coz in Java an array is created with an initial size. But in javaScript, arrays are dynamic. So can't see implement a stack using arrays in JavaScript.
You can easily do it with arrays. A small example:
You could tune it a bit to check for a maximum size or stuff like that :)
Thanks. But in this way, the stack can never get filled up, coz the array ain't static. I think different languages, have their different implementation of abstract structures. In java, you can't implement a stack with an array coz its fixed
You can always "fix" the array if you want by adding a size to the constructor. Then you check if the size is met whenever you push a new value to the stack. So yeah, the language can give you other constructs and other ways to do something, but it's totally possible to do it in JavaScript
Thanks man