implementation of queue using linked list
Answers
Answered by
1
______Correct⤵️ Answer⤵️______
____________________________
To implement queue using linked list, we need to set the following things before implementingactual operations.
Step 1: Include all the header files which are used in the program.
Step 2: Define a 'Node' structure with two members data and next.
Step 3: Define two Node pointers 'front' and 'rear' and set both to NULL.
_____________________________
❤️❤️❤️HOPE HELP U DEAR❤️❤️❤️
david231999:
thank you.
Similar questions