Computer Science, asked by mansitayal303, 10 months ago

In linked list implementation of a queue where does a new element be inserted

Answers

Answered by rahularyan720
1

Explanation:

In linked list implementation of a queue where does a new element be inserted

Answered by SarcasticKarma
1

Answer:

Answer

Tail position

  • If the queue is implemented using linked list, then the new element will be inserted at the tail position of the linked list as Queue follows FIFO principle in which new element will always be added at the end of the Queue.
Similar questions