Please enable JavaScript.
Coggle requires JavaScript to display documents.
DATA STRUCTURE (QUEUE (FIFO build by using linked list, Actions insert…
DATA STRUCTURE
-
LINKED LIST
-
TYPES
Simple
action:addfront,removefront,empty
is a sequence of node and header and a trailer.A node include data and 2 reference to previous node and next node
Double
is sequence of anode and a header and trailer.A node include data and 2 reference to previous node and next node
action:addfront,addback,removefront,removeback
Circularly
is a sequence of node but last node include reference to first node that is called cursor. Anode include data and reference to next node
action:front ,back,advance and remove
-
-
-
-