Please enable JavaScript.
Coggle requires JavaScript to display documents.
DATA STRUCTURE (Sorting and Searching (Sorting (Insertion Sort, Merge Sort…
DATA STRUCTURE
-
Linked List
-
types
doubly
is sequence of anode and a header and trailer.a node includes data and 2 reference to previous node and next node
action: addfront, addback, removefront, removeback
circularly
is sequence of node but last node includes a reference to first node that is called cursor. Anode includes data and reference to next node
Action: Font, back, advance,add, remove.
Simply
action: addfront, removefront, empty
is a sequence of node and header and a trailer.A node includes data and 2 reference to previous node and next node
-
Queue
-
Actions: initialize,insert,delete
-
-
-