deadeazy.hashnode.devQueue data structure in JavascriptQueue A queue is a linear data structure and collection of items. In a queue, items are inserted at one end called the rear and deleted at the other end called the front. A queue is like a stack in many ways, except that it processes data in a differ...Nov 15, 2023·3 min read
deadeazy.hashnode.devStack data structure in JavaScriptA data structure is a way to store and use data efficiently. Different programming languages have different data structures. It's possible to implement data structures in different ways. In this article, I'll be walking you through how to implement t...Nov 6, 2023·4 min read