Skip to content

sudheerkodali/QUEUE-DSA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 

Repository files navigation

QUEUE-DSA

NO. Questions
Types of QUEUES
1 what-is-QUEUE
2 QUEUE-using-linked-list
3 QUEUE-implementation

| 1 | what is QUEUE

1.1 what is queue

  • QUEUEs is also mentained as 'ADT': Abstract data types
  • It has the name called FIFO : FIRST IN FIRST OUT means Front end
  • process would be Delection at front and Insertion at the back end
  • Image of QUEUE

    1.2

  • suppose if we Add() value 5 it will insert in front end of the QUEUE
  • suppose if we Add() value 7 it will insert in front end of the QUEUE
  • suppose if we Add() value 8 it will insert in front end of the QUEUE
  • suppose if we Add() value 9 it will insert in front end of the QUEUE
  • [5,7,8,9]

  • suppose if we Remove() value 5 it will delete the front of the QUEUE
  • Image of QUEUE

    1.3

    Image of QUEUE

    | 2 | queueusingLinkedlist

    2.1

    Image of QUEUE

    2.2

    Image of QUEUE

    3

    Image of QUEUE