
- Establish a linked queue, and run operations in the linked queue.
General operations include:Create queue, one element enqueue, one element dequeue, check if the queue is full.
Implementation of
Header file
typedef int DataType;
typedef struct Node {
DataType data;
struct Node *next;
}Lnode; //define node type
typedef struct Qu
{
Lnode *front;
Lnode *rear;
} Queue;//queue type
Source file
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#include "queue.h"
Queue * Initiate_queue()//Initial queue with head node, return pointer of the queue.
{
}
int Queue_empty (Queue *queue)//Check if the queue if empty. If it is empty return 1 else return0.
{
}
void En_queue(Queue *queue, DataType node)//Enqueue
{
}
DataType De_queue(Queue *queue)//Dequeue a node, return its value.
{
Lnode *de_node;
int seq;
if(Queue_empty(queue)==1)//Check if the queue is empty
{
printf("The queue is empty! Cannot dequeue");
return -1;
}
else//dequeue an element
{
}
}
void displayQueue(Queue *queue)//Display the element in the queue
{
}
void main()//
{
Queue *Q;
int i;
Q=Initiate_queue();
printf("Please input elements\n");
______________;//generate the linked queue
_______________;//display the elements in queue
______________;//dequeue an element
_______________;//display the elements in queue
_______________;//enqueue an element
_______________;//display elements in queue
}

Step by stepSolved in 2 steps with 1 images

- A(n) array can be used in an array implementation of a queue to avoid an overflow error at the rear of the queue when the queue is not full.arrow_forwardThe queue operation that is required when using an array implementation, but is not required when using a linked list implementation, is ___. isFull() isEmpty() peek() dequeue()arrow_forwardStack: Stacks are a type of container with LIFO (Last In First Out) type of working, where a new element is added at one end and (top) an element is removed from that end only. Your Stack should not be of the fixed sized. It should be able to grow itself. bool empty() : Returns whether the Stack is empty or not. Time Complexity should be: O(1) bool full() : Returns whether the Stack is full or not. Time Complexity should be: O(1)int size() : Returns the current size of the Stack. Time Complexity should be: O(1)Type top () : Returns the last element of the Stack. Time Complexity should be: O(1) void push(Type) : Adds the element of type Type at the top of the stack. Time Complexity should be: O(1) Type pop() : Deletes the top most element of the stack and returns it. Time Complexity should be: O(1) Write non-parameterized constructor for the above class. Write Copy constructor for the above class. Write Destructor for the above class. Now write a global function show stack which…arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





