Implementation of stack and queue using linked list in data structure
Answers
Answered by
3
Stack is a linear data structure which implements data on last in first out criteria. ... Queue: Queue is a data structure, that uses First in First out(FIFO) principle. Queue can be implemented by stack, array and linked list. Here is java program to implement queue using linked list.
Similar questions