mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
Minor fixes
This commit is contained in:
parent
9af798a677
commit
e93ecda453
@ -62,6 +62,9 @@ void enque(int x) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Takes the next item from the Queue.
|
||||
*/
|
||||
int deque() {
|
||||
int returnData;
|
||||
if(head == NULL) {
|
||||
@ -76,3 +79,47 @@ int deque() {
|
||||
head->next = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the size of the Queue.
|
||||
*/
|
||||
int size() {
|
||||
return count;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user