#java
Read more stories on Hashnode
Articles with this tag
In this episode, I delved into the algorithms of implementing a stack with a fixed size array. · Introduction As discussed in the last episode on stack...
In this article, I'll dissect the algorithms and implement the stack data structure using a linked list. · STACK Stack is a linear data structure where...
Singly Linked List with Java · Introduction A self-referential class contains an instance that refers to another object of the same class type. Programs...
Queue A queue is a linear data structure where elements are stored in a FIRST-IN FIRST-OUT (FIFO) approach, where the first element inserted will be...